0

Problem: The vertices of the base of an isosceles triangle are $(-1,-2)$ and $(1,4)$. If the third vertex lies on the line $4x + 3y = 12$, find the area of the triangle.

Attempt 1 : Convert $4x + 3y = 12$ to point slope form which is $(y-0) = \frac{-4}{3}(x-3)$ then use (0,3) and the two given coordinates to solve the area by using the area by its coordinates formula but got the wrong answer.

Attempt 2: get the distances between $(-1,-2)$ and $(1,4)$, between $4x + 3y = 12$ and $(-1,-2)$ and between $4x + 3y = 12$ and $(1,4)$ to get sides a,b, and c to get the area by heron's formula but again resulted to the wrong answer.

Question: How to answer this? I think it has just something to do with converting $4x - 3y =12$ to standard form to get its coordinates or something. Any help would be appreciated.

Jayce
  • 483
  • You point slope form should be $$ y=-\frac 43x + 4 \iff (y-4) = -\frac 43 x$$ – amWhy Jun 01 '18 at 00:17
  • @amWhy I have interchanged x and y. I used (0,3) when it is supposed (3,0). I don't know if it's just coincident but I got the answer with that. – Jayce Jun 01 '18 at 00:35

2 Answers2

3

How would I approach such problem?

We know that the third vertex, call it $C$ lies on the perpendicular bisector of $AB$. The midpoint of $AB$ is $((-1+1)/2, (-2+4)/2)=(0, 1)$. The slope of $AB$ is $3$, thus the perpendicular bisector is determined by line $y = -x/3 + 1$. Compute the intersection with $4x+3y=12$ to get $(3,0)$. The area is thus $|A - B|\cdot|C - (0, 1)|/2 = \sqrt{2^2+6^2}\cdot\sqrt{1^2+3^2}/2 = 10$.

Indeed, the result is that pretty, since the given triangle is right, which can be seen after drawing the points and lines. Always start with drawings, they help alot.

enedil
  • 1,710
1

hint

$$A=(-1,-2) $$ $$B=(1,4) $$ $$C=(a,b) $$

$$AC^2=BC^2\implies$$

$$(a+1)^2+(b+2)^2=(a-1)^2+(b-4)^2$$

$$\implies 4a+12b=12$$

on the other hand

$$4a+3b=12$$

thus $$a=3,b=0$$

the middle of $[A,B] $ is $$J=(0,1) $$

the area is $$S=\frac {AB.CJ}{2} $$

  • When I read your a = 3 and b =0, I realized that I exchanged x and y and instead use (0,3) when it should be (3,0). With that, the area is 10. Thank you. – Jayce Jun 01 '18 at 00:30
  • May I ask if $AC^2 = BC^2$ is derived from the fact that it is an isosceles triangle? Then $4a + 12b = 12$ is the line equation from C to A and C to B? – Jayce Jun 01 '18 at 00:33
  • @Jayce Yes {}{}{}{}{} – hamam_Abdallah Jun 01 '18 at 00:36