1

I am doing my schoolwork, and I can't figure out how to do this problem. I can't find anything related to it by searching it up, and the lesson name is just called 'Problem Solving', so I have no title to search it up with. How do you do this?

enter image description here

The way I have been doing it is I apply the Pythagorean Theorem, and I get this: $$(a-2)^2 + (a+1)^2 = (a+4)^2$$ I then turn all of them into quadratic equations: $$(a^2 - 4a + 4) + (a^2 + 2a + 2) = (a^2 + 16a + 16)$$ This is where I have a problem. In the lesson, the first one is just $a^2$. Because of this, they don't show me how I should combine all of the equations together. In nearly every problem, I end up getting the same value on both sides of the equation, like this: $$a^2 - 30 + 30 = 0$$

ACB
  • 3,713

2 Answers2

0

You have some mistakes opening a binomial, you should get $$a^2-4a+4+a^2+2a+1=a^2+8a+16$$ or $a^2-10a-11=0 \implies a=11 \ (a=-1 \text{ does not make sense}) $
In general, $(x+y)^2=(x+y)\cdot(x+y)=x^2+2xy+y^2$

Vasili
  • 10,690
0

By applying pythagoras theorem in the given triangle, we get:

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

Solving using the identity :

  • $(a+b)^2 = a^2 + b^2 + 2ab$

$\implies \not{a^2} + 16 + 8x = \not{a^2} + 1 + 2a + a^2 + 4 - 4a$.

$\implies 16 + 8a=a^2 - 2a + 5$.

$\implies 0 = a^2 - 2a + 5 - 16 - 8a$.

$\implies 0 = a^2 - 10a -11$.

$\implies 0 = a^2 - 11a + a -11$.

$\implies 0 = a(a - 11) + 1(a -11)$.

$\implies 0 = (a+1) ( a-11)$.

$\implies a = -1 , 11$.

Here, $a$ can not be equal to $-1$ because side cannot be equal to $0$ (if we substitute $a= -1$ in side).

Therefore,

$\boxed{\implies a = 11}$

amWhy
  • 209,954