Can $x^3+3x^2+1=0$ be solved using high school methods?

12.6k Views Asked by At

I encountered the following problem in a high-school math text, which I wasn't able to solve using factorization/factor theorem:

Solve $x^3+3x^2+1=0$

Am I missing something here, or is indeed a more advanced method necessary to solve this particular cubic? The answer provided was $x\doteq-3.1$, which I was only able to confirm using CAS.

6

There are 6 best solutions below

2
On BEST ANSWER

It is easy to show that the equation has no rational roots, using high-school level math. Indeed, if $x =\frac{p}{q}$ is a root, you can easily show that $p \mid 1$ and $q \mid 1$ thus the only potential rational roots are $\pm 1$, and they don't work. This shows that we cannot probably calculate the solution in a simple way, we have to approximate.

To approximate, the simplest idea would be to write the equation as

$$x^2(x+3)=-1$$

As $x^2 \geq 0$ it follows that $$x+3 <0 \,.$$ Thus, $x <-3$. But then, $$x^2 >9 \,.$$ Multiplying this by $x+3$, which is negative, we get

$$-1=x^2(x+3)< 9(x+3) \,.$$

This yields

$$x+3 > \frac{-1}{9}$$

Thus

$$ \frac{-1}{9} < x+3 <0 \,,$$ or $$-3-\frac{1}{9} <x <-3$$

8
On

Single-variable calculus involving some form of Newton's method is taught in some U.S. high schools.

Newton's method can be used to find an arbitrarily accurate solution to $x^3 + 3x^2 + 1 = 0$.

1
On

Tartaglia:

When the cube and things together
Are equal to some discreet number,
Find two other numbers differing in this one.
Then you will keep this as a habit
That their product should always be equal
Exactly to the cube of a third of the things.
The remainder then as a general rule
Of their cube roots subtracted
Will be equal to your principal thing
In the second of these acts,
When the cube remains alone,
You will observe these other agreements:
You will at once divide the number into two parts
So that the one times the other produces clearly
The cube of the third of the things exactly.
Then of these two parts, as a habitual rule,
You will take the cube roots added together,
And this sum will be your thought.
The third of these calculations of ours
Is solved with the second if you take good care,
As in their nature they are almost matched.
These things I found, and not with sluggish steps,
In the year one thousand five hundred, four and thirty.
With foundations strong and sturdy
In the city girdled by the sea.

See here the math http://talkmath.wordpress.com/2010/12/31/the-del-ferro-tartaglia-cardano-solution-of-the-cubic/

11
On

You might be able to get away with using some "miracle" substitutions that solve the cubic (which can be generalised to solve a general cubic).

Begin with

$$x^3+3x^2+1=0 \tag{$\dagger$}$$

  1. Substitute $x = y - 1$ into $(\dagger)$ to obtain

    $$y^3 - 3y + 3 = 0. \tag{$\star$}$$

  2. Let $y = z + \frac{1}{z}$ so that $(\star)$ becomes $z^3+\frac{1}{z^3}+3 = 0$ or by multiplying through by $z^3$,

    $$\left(z^3\right)^2 + 3\left(z^3\right) + 1 = 0. \tag{$\ast$}$$

  3. Solve $(\ast)$ for $z^3$ with the quadratic equation formula,

    $$z^3 = \frac{-3\pm\sqrt{5}}{2}.$$

    The two real solutions of $(\ast)$ are thus $z_1 = -\sqrt[3]{(3+\sqrt{5})/2}$ and $z_2 = -\sqrt[3]{(3-\sqrt{5})/2}$.

  4. Unravel the substitutions: $x = y - 1 = z + \frac{1}{z} - 1$ so solutions to $(\dagger)$ are

    $$\begin{align*}x_1&= z_1 + 1/z_1 - 1 = -\sqrt[3]{(3+\sqrt{5})/2} - \sqrt[3]{2/(3+\sqrt{5})} - 1\\ x_2&= z_2 + 1/z_2 - 1 =-\sqrt[3]{(3-\sqrt{5})/2} - \sqrt[3]{2/(3-\sqrt{5})} - 1\end{align*}$$

It actually turns out that $x_1 = x_2$ (another miracle!). So we may write the final solution in exact form as

$$x = -\sqrt[3]{(3+\sqrt{5})/2} - \sqrt[3]{2/(3+\sqrt{5})} - 1 \approx -3.1$$

0
On

Since you asked to solve that equation, I would assume you need a method that can be used to get the answer to any arbitrary precision. Since Newton's method is usually not taught in high school, let us try an alternative that does not require anything like gradients or even square roots.

Observe that

$x^3+3 x^2+1=0\Leftrightarrow x^2(x+3)=-1\Leftrightarrow x=-1/x^2-3$

Now the problem becomes finding $x$ so that it equals $-1/x^2-3$.

One might be very quick to find out that $x<3$ and then plug that inequality back into the right hand side and get $x>-3-1/9$. Then you can plug that back into RHS again and get $x<-2433/784\approx-3.10332$, then do it again you get $x>-(18373123/5919489)\approx-3.10383599$. You can do it over and over again to get tighter and tighter upper and lower bounds. You can get a rational bound to arbitrary precision here.

But what if one is from one of those high school that doesn't even teach inequalities?

Well the worst one can do is to guess an arbitrary number (other than 0, of course) for $x$, you can evaluate this and see if actually $x$ do equal to $-1/x^2-3$.

Chances are, you won't be that lucky and they just happen to be the same; maybe they are even orders of magnitudes away. Well, two things that are supposed to be equal are not so, then they probably should be between that. In other words, obtain a better guess by taking the average of these two numbers: $\tilde{x}=(x-1/x^2-3)/2$

Now we have a better new guess, and keep the procedure you can refine that result to arbitrary precision.

In fact, even better than Newton's method, this kind of iterative procedure converges from any starting guess (other than 0), and the concept is extremely easy. Of course, you have to carry out the work of iterations.

0
On

I remember the Cardano's method (simplified without extension over complex numbers) described in my high school math book. We probably skipped that chapter, however that equation could be solved applying the procedure mechanically, just like a calculus exercise.

However, given the fact that the solution is given as a simple number and not as a radical, I imagine that an approximation like the one listed above was required.