5

Consider the following equation:

$$(7 + 4\sqrt{3})^{t^2 - 5t + 5} + (7 - 4\sqrt{3})^{t^2 - 5t + 5} = 14$$

I have tried and exhausted all the methods I know of and resorted to brute force to solve this problem and got $t = 4$, $t = 1$. However I was wondering if there was some sort of elegant solution to prove the answer algebraically.

yerdeth
  • 69

2 Answers2

9

Setting $a(t)=(7+4\sqrt 3)^{t^2-5t+5}$ so thar $\frac 1{a(t)}=(7-4\sqrt 3)^{t^2-5t+5}$, we get $$a(t)+\frac 1{a(t)}=14$$ and hence $a(t)=7+4\sqrt 3$ or $a(t)=7-4\sqrt 3$. So, we have $$t^2-5t+5=1 \text{ or}\;(-1)$$ Now, solve for $t$.

Sayan Dutta
  • 8,831
  • 1
    Wow that is quite a beautiful solution, I am still grappling with the relationship that you used to get a+1/a. Do you have any tips to allow me to prove that? – yerdeth Jun 28 '23 at 08:06
  • 2
    $(7+4\sqrt{3})(7-4\sqrt{3})=1$ – user376343 Jun 28 '23 at 08:30
  • 1
    @yerdeth you mean solving for $a + \frac 1a = 14$ or realising that the substitution would work? If it's the former, multiply by $a$ and solve the quadratic equation. The later one is more difficult to answer- honestly, it's the first thing I saw. user376343's comment is the best thing I can provide- it's just that you need some practice with tricky applications of $a^2-b^2$ type identities. – Sayan Dutta Jun 28 '23 at 17:41
4

Your problem is just the equivalent of

$$(7 + 4\sqrt{3})^{p(t)} + (7 - 4\sqrt{3})^{p(t)} = 14$$

Where $p(t) = t^2 - 5t + 5$. Notice that if $p(t) = 1$ you're done since

$$(7 + 4\sqrt{3})^1 + (7 - 4\sqrt{3})^1 = 14$$

So: what are the values in $\mathbb{R}$ for which $p(t) = 1$?

(Notice that also $p(t) = -1$ works... Can you see it?)

Enrico M.
  • 26,114