Median of a Triangle in LaTeX: Difference between revisions
Catoptrics (talk | contribs) mNo edit summary |
Propose for deletion |
||
| Line 64: | Line 64: | ||
This principal can be applied to any triangle. | This principal can be applied to any triangle. | ||
{{delete|too specific title}} | |||
Revision as of 20:46, 22 March 2025
The median of a triangle can be depicted using
.
We begin by drawing a basic triangle:
unitsize(0.5 cm);
pair A, B, C;
A = (3,6); B = (-5,2); C = (7,-8);
draw(A--B--C--cycle);
Which gives:
The median is located halfway between the points so we add:
unitsize(0.5 cm);
pair A, B, C, D, E, F, G;
A = (3,6); B = (-5,2); C = (7,-8); D = (B + C)/2; E = (A + C)/2; F = (A + B)/2;
draw(A--D,red); draw(B--E,red); draw(C--F,red); draw(A--B--C--cycle);
Which gives:
This principal can be applied to any triangle.
|
This page has been proposed for deletion. Reason: too specific title Note to sysops: Before deleting, please review: • What links here • Discussion page • Edit history |