A-Level Maths
Courses
Papers
Questions
Hardest
Spec
Trends
Bookmarks
0
Diagrams
Search
Diagram Generations
21
Review auto-generated TikZ diagrams. Source image on the left, rendered TikZ on the right.
Pending
Approved
Rejected
All
5719
Q5
(CAIE M2 2003 June) — image 0
approved
Source (PDF)
Rendered TikZ
TikZ Code
Recompile
\begin{tikzpicture}[>=Stealth] % Define coordinates \coordinate (O) at (0,0); \coordinate (top) at (0,5); \coordinate (aircraft) at (4.5,3.5); \coordinate (center) at (0,3.5); % Dashed vertical line upward from O \draw[dashed] (O) -- (center); % String from O to aircraft \draw (O) -- (aircraft); % Horizontal dashed circle (ellipse for perspective) % The aircraft moves in a horizontal circle at the height of the aircraft % Draw the ellipse centered on the vertical line at the aircraft's height % Draw back part of ellipse (dashed) \draw[dashed] (center) ellipse (4.5 and .8); % Draw front part of ellipse (solid) - over the top % Filled circle for aircraft \fill (aircraft) circle (3pt); % Label for string length: 9 m \node[right] at (2.8,1.8) {$9\,\mathrm{m}$}; % Angle arc for 60 degrees from upward vertical \draw (0,1.2) arc (90:37:1.2); \node[above right] at (0.3,0.6) {$60^\circ$}; % Label O \node[below left] at (O) {$O$}; \end{tikzpicture}
1
2