1

My maths teacher gave me a worksheet to work through as I was getting slightly bored in lessons. However, there was one question which I cannot do. The worksheet gives the answer, but you are supposed to show how you did it. Here is the question:

$729 + 3^{2x+1} = 4\times3^{x+2}$

The sheet said that the answer was $x=2$ or $x=3$ Here is my working - I 'solved' by completing the square, as you will see:
\begin{align} 3^{2x+1}-4\times3^{x+2}+729& = 0 \\ 3(3^{2x})-4\times(3^2)(3^x)+729& = 0\\ 3(3^x)^2-36(3^x)+729& = 0\\ y &= 3^x\\ 3y^2-36y+729 & = 0\\ 3(y^2-12y+243) &= 0\\ (y-6)^2-36+243 &= 0\\ (y-6)^2+207 &= 0\\ (y-6)^2&=-207\\ y-6 &= \sqrt{207}i\\ y &= 6+\sqrt{207}i\\ 3^x &= 6+\sqrt{207}i\\ x &= \log_3(6+\sqrt{207}i)\\ \end{align} Clearly, this is not the answer as stated on the sheet. Have I answered this question wrong, or is the answer on the sheet wrong? Thank you in advance.

Ethan Bolker
  • 95,224
  • 7
  • 108
  • 199
AJ123
  • 102

3 Answers3

3

There was a typo in the question. It should have been

$$729+3^{2x+1}=4\times3^{x+3}$$

Note the $+3$ in the exponent instead of $+2$.

(You are correct that the question as stated does not have integer solutions, in fact it has no real solutions).

There's actually some pretty mathematical content here though. We can rewrite $729=3^6$ and $4=1+3$ to make this expression: $$3^6+3^{2x+1}=3^{x+3}+3^{x+4}$$ Now the solutions $x=2$ and $x=3$ boil down to adding the same powers of $3$ on both sides. The completing the square method you outlined in your work will show that these are the only solutions.

  • could you please explain to me why $4\times3^x = 3^{x+3} + 3^{x+4}$? I am only a GCSE student, who is doing A-Level work, so I don't know how some of these concepts work yet – AJ123 Dec 13 '17 at 21:12
  • @AJ123 We can rewrite $4$ as $1+3$ and then distribute: $$4\times3^{x+3}=(1+3)\times3^{x+3}=1\times3^{x+3}+3\times3^{x+3}=3^{x+3}+3^{x+4}.$$ That being said, you certainly don't need to do this to solve the problem, I just think it looks nicer like this (to solve the question, all you need to do is complete the square like you showed). – Peter Woolfitt Dec 13 '17 at 21:29
2

Hint:

This seems to be a problem in arithmetic. Note that $729=3^6$, and rewrite the equation as $$3^{2x+1}+3^6=4\cdot 3^{x+3}.$$

Some details

If $x$ is a natural number this implies $4$ divides the left-hand side. Depending on the values of $x$, factor out $3^6$ or $3^{2x+1}$. $4$ must divide the other factor. Now

  • if $2x+1>6$, we factor out $3^6$, obtaining $$3^6(3^{2x-5}+1)=4\cdot 3^{x+3},$$ so necessarily $\;x+3=6$ and $3^{2x-5}+1=4\iff 2x-5=1$. The first equality yields $\color{red}{x=3}$ and so does the second.
  • if $2x+1<6$, factoring out $3^{2x+1}$, we get $$3^{2x+1}(3^{5-2x}+1)=4\cdot 3^{x+3},$$ so $\,2x+1=x+3\,$ and $\,5-2x=1$. Both equations yield $\,\color{red}{x=2}$.
Bernard
  • 175,478
  • @PeterWoolfitt: I didn't say there were solutions. I explained a sensible way to tackle this problem. – Bernard Dec 13 '17 at 20:30
  • @PeterWoolfitt: See how it can be used in my completed answer. – Bernard Dec 13 '17 at 21:08
  • In the first case, how do we know $3^6=3^{x+3}$ and $3^{2x-5}+1=4$? Couldn't we also have some mixing of factors? e.g. $3^5=3^{x+3}$ and $3^{2x-5}+1=12$. I guess this does boil down to a finite number of checks though. – Peter Woolfitt Dec 13 '17 at 21:33
  • Unique factorisation.There's nothing to check: one of the factors is odd, the other is even. You don't have a choice. – Bernard Dec 13 '17 at 22:15
  • I think all you know so far is that one of the factors looks like $3^n$ and the other looks like $4\times3^m$. It seems to take a separate (if easy) argument to say $3^t+1=4\times3^m$ iff $m=0$. Still, now in the updated form (and using the correct question instead of the original), this answer is now acceptable. – Peter Woolfitt Dec 13 '17 at 22:25
  • (just a note: I deleted my first comments because they were in reference to the first version of the problem which had no solutions). – Peter Woolfitt Dec 13 '17 at 22:29
  • The method also worked for the first version, and showed there was no solution. This being said, I intended to give only a hint. – Bernard Dec 13 '17 at 22:53
  • That's what I announced from the very beginning: it looks like an arithmetic problem. – Bernard Dec 13 '17 at 22:56
  • Interesting - I do not know that use of the word arithmetic. To me arithmetic means having to do with the basic $+,-,\times,/$ operations, saying nothing about $\mathbb{Z}$. Sorry for the confusion. – Peter Woolfitt Dec 13 '17 at 23:00
  • In Greek, the word ἀριθμόϛ means (natural) ‘number’. One should always teach etymology (another Greek word ;o) – Bernard Dec 13 '17 at 23:07
  • Yeah, I'm really sorry, if I'd known that was the relevant meaning of arithmetic I would have been happy with the answer from the beginning – Peter Woolfitt Dec 13 '17 at 23:10
0

HINT

Set $3^x=y$

$$729 + 3y^2= 4\cdot 9 y$$

$$3y^2-36y+729=0$$

$$y^2-12y+243=0$$

$\Delta <0 \implies$ no real solution

user
  • 154,566