Hi architkap,Good instinct to look for a shortcut, and you did land on the right number. But I want to flag something important: the
method you used isn't actually a legal move, and it only gave the right answer here by luck.
Here's the trap. When you "divide term by term," you're really claiming:
(a^6 - b^6) / (a^3 + b^3) = a^6/a^3 - b^6/b^3
That is, you split a fraction across a
sum in the denominator. You can only split a fraction when the denominator is
common to each piece - like (X + Y)/D = X/D + Y/D. You
cannot split when the denominator itself is a sum.
Quick proof it fails: take plain numbers.
- Real value: (6 - 2)/(3 + 1) = 4/4 =
1- Term-by-term: 6/3 - 2/1 = 2 - 2 =
0Different answers - so the move is not valid.
Why it happened to work this timeYour answer came out right only because a^6 - b^6 has a special structure - it's a
difference of squares in a^3 and b^3:
a^6 - b^6 = (a^3 + b^3)(a^3 - b^3)
So when you divide by a^3 + b^3, that factor cleanly cancels and leaves a^3 - b^3. The
factoring is what's doing the real work - not the term-by-term division. They coincided here, but on a problem without that clean factor, term-by-term would burn you.
Reliable path: always factor first.
- a^6 - b^6 = (a^3 + b^3)(a^3 - b^3)
- Sub in the givens:
14 =
8 x (a^3 - b^3)
- So a^3 - b^3 =
14/
8 =
7/4 -
DSame answer, but now it's built on a rule you can trust every time.
Answer: Darchitkap
can we also solve this by dividing both equations?
a^3+b^3 = 8 1)
a^6-b^6 = 14 2)
Can I just divide 2) by 1)?
a^6/a^3 = a^3
-b^6/b^3 = -b^3
14/8
so we finally get a^3-b^3=14/8 which is the same answer as all above.