1

Given two functions,show where they intersect

$(x^2−5)^2/(x+7)^2=\sqrt{169-x^2}$

I have already tried to square both of them but I get a very complex equation and I can not solve it. I saw a guy who put Ln before and before the two sides of the equation.

Rocket
  • 13

1 Answers1

1

This equation simplifies to an 8th degree polynomial that can't be solved explicitly. Applying logarithms gives you $2 \log(x^2 - 5) - 2 \log(x+7) = \frac{1}{2} \log(169-x^2)$, but this does not simplify. As always, numerical approximations such as newton's method will get you approximate answers that @JoelReyesNoche gave.

qwr
  • 10,716
  • ok it seems like it is the answer , thank you @JoelReyesNoche, and you qwr, so in conclusion you take natural logarithm . Do you know a good book for this topic, i have Stewart´s Precalculus, but it doesn´t explain it well – Rocket Apr 30 '14 at 03:19
  • You're welcome. But the conclusion is not to take natural logarithms; the solution is to use numerical approximations. – JRN Apr 30 '14 at 03:51