Find Area of Triangle with Vertices (1,2), (3,4), (5,0)

easy CBSE JEE-MAIN CBSE 2024 Board Exam 4 min read

Question

Find the area of the triangle whose vertices are A(1, 2), B(3, 4), and C(5, 0).


Solution — Step by Step

The area of a triangle with vertices (x1,y1)(x_1, y_1), (x2,y2)(x_2, y_2), (x3,y3)(x_3, y_3) is:

Area=12x1(y2y3)+x2(y3y1)+x3(y1y2)\text{Area} = \frac{1}{2} |x_1(y_2 - y_3) + x_2(y_3 - y_1) + x_3(y_1 - y_2)|

The modulus sign is non-negotiable — area is always positive, but the formula can give a negative value depending on the order of vertices.

Assign clearly so you don’t mix up during substitution:

  • x1=1, y1=2x_1 = 1,\ y_1 = 2
  • x2=3, y2=4x_2 = 3,\ y_2 = 4
  • x3=5, y3=0x_3 = 5,\ y_3 = 0
Area=121(40)+3(02)+5(24)\text{Area} = \frac{1}{2} |1(4 - 0) + 3(0 - 2) + 5(2 - 4)|

Work out each bracket separately before multiplying — this is where most errors happen.

=121(4)+3(2)+5(2)= \frac{1}{2} |1(4) + 3(-2) + 5(-2)| =124610= \frac{1}{2} |4 - 6 - 10|
=1212= \frac{1}{2} |-12| =12×12=6= \frac{1}{2} \times 12 = 6

Area of the triangle = 6 square units.


Why This Works

This formula is actually the determinant method in disguise. When we place three points in a coordinate plane, the signed area of the triangle they form equals half the cross product of two edge vectors. The determinant captures exactly this.

The reason we subtract coordinates in pairs — (y2y3)(y_2 - y_3), (y3y1)(y_3 - y_1), (y1y2)(y_1 - y_2) — is because each term represents one edge’s contribution to the “sweep” area. Notice these three differences always sum to zero: (y2y3)+(y3y1)+(y1y2)=0(y_2 - y_3) + (y_3 - y_1) + (y_1 - y_2) = 0. This is a quick sanity check you can do mid-solution.

The absolute value at the end simply handles whether we listed the vertices clockwise or anticlockwise. Both orderings give the same magnitude, different sign.


Alternative Method — Using the ½ |base × height| Approach

We can use the basic formula if we compute the base and height geometrically.

Base AB: Distance between A(1, 2) and B(3, 4):

AB=(31)2+(42)2=4+4=22AB = \sqrt{(3-1)^2 + (4-2)^2} = \sqrt{4 + 4} = 2\sqrt{2}

Height from C(5, 0) to line AB:

Line AB has slope 4231=1\frac{4-2}{3-1} = 1, so its equation is y2=1(x1)y - 2 = 1(x - 1), giving xy+1=0x - y + 1 = 0.

Distance from C(5, 0) to this line:

h=50+112+(1)2=62=32h = \frac{|5 - 0 + 1|}{\sqrt{1^2 + (-1)^2}} = \frac{6}{\sqrt{2}} = 3\sqrt{2}

Area:

=12×22×32=12×6×2=6 sq. units= \frac{1}{2} \times 2\sqrt{2} \times 3\sqrt{2} = \frac{1}{2} \times 6 \times 2 = 6 \text{ sq. units}

Same answer. The determinant method is significantly faster — use it always in board and JEE Main.

In CBSE board exams, the determinant formula is the expected method and gets full step marks. Writing it as a 3×33 \times 3 determinant is also accepted:

Area=12x1y11x2y21x3y31\text{Area} = \frac{1}{2} \begin{vmatrix} x_1 & y_1 & 1 \\ x_2 & y_2 & 1 \\ x_3 & y_3 & 1 \end{vmatrix}

Both forms are equivalent.


Common Mistake

The most frequent error is dropping the modulus sign and reporting a negative area. If you list vertices in clockwise order, the formula gives 6-6, and students write “Area = 6-6 sq. units” and lose marks. Area is a physical quantity — it cannot be negative. Always apply  |\ | before writing the final answer.

A second common slip: mixing up which yy-coordinates go with which xx-coordinates during substitution. Write the assignment x1,y1,x2,y2,x3,y3x_1, y_1, x_2, y_2, x_3, y_3 explicitly before plugging in — takes 10 seconds and saves the entire question.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next