I have recently came across a problem involving cube roots of numbers added to square roots, in the form of
I can take a number like
Recently, I developed a method of breaking down the equation into its cube root equation.
With an equation in the form of
Let’s start with
We need to find
If You look at X, You see it is the sum of a cube and a multiple of 3Z.
Let’s look at an example,
We need a result that is evenly divisible by 3Z, or 9 in this case.
Our results show 3, 6, and 9 are viable solutions for a, we must now check each against X to get B.
if(A=3) | B²=39 | ||
if(A=6) | B²=16 | ||
if(A=9) |
The only even square root is for A=6, B=4.
It matches, so we have a correct solution for
If our example
Let’s try
Of these, 0.1, 0.4, 0.7, 1, and 1.3 are finitely divisible by 6 (3Z). If we didn’t find any, we would have to try smaller numbers.
if (A=0.1) | B is irrational | ||
if (A=0.4) | |||
if (A=0.7) | |||
if (A=1) | B is irrational | ||
if (A=1.3) | B is irrational |
Three of these are obviously irrational, so cannot be part of our solution, so are not calculated.
For A=0.7, B is also irrational, so we will first test A=0.4:
And for Y:
It matches, so we have a correct solution for
Any cube root in this form must also have
Also, remember that these are cube roots, so there are two complex roots. Just rotate the answer found by 120° and 240°, for the remaining answers. If this technique doesn’t find a simple answer, then all 3 may be complex.
Another way to solve, if Z=5 and the number under the radical is in the form of
Alternate values for Z:
Z | Form | A= |
2 | ||
3 | ||
5 | ||
6 | ||
7 | ||
8 | ||
10 |
This is likely not the best method for finding the cube roots, but it does work.