breaking up fractions

516 Views Asked by At

I have these two fractions

${11 \over 31 }+{-11 \over 61}$

Adding them gives

$330 \over 1891$

But how do I go back to the two fractions, once I've added them?

I can get the denominators just by factoring 1891, but how do I find the numerators without brute force?

3

There are 3 best solutions below

5
On BEST ANSWER

Factor the denominator: $${330 \over 1891} = \frac {330}{31\cdot 61} = \frac A{31} + \frac B{61}$$

Then we need to find $$A\cdot 61 + B\cdot 31 = 330\tag{$\dagger$}$$ The problem then becomes finding integers $A, B$ that satisfy this equation $(\dagger)$. To do this, try using Euclid's Algorithm, or the \Extended Euclidean Algorithm.

1
On

Every fraction can be decomposed into infinitely many other fractions. For instance, $1/2=1/12321+12319/24642$. So there's no hope.

0
On

You need to find integers $m$ and $n$ such that $$61m + 31n = 330.$$

For this you use Euclid's algorithm.