How to compute the $\frac{x}{x_1} \cdot x_2 + \frac{y}{y_1} \cdot y_2$

55 Views Asked by At

I have a system of 3 equations, each equation has 3 variables, $x,y,z$ :

$$x + y = z \\ x_1 + y_1 = z_1 \\x_2 + y_2 = z_2$$

Is $(\frac{x}{x_1} \cdot x_2 )+ (\frac{y}{y_1} \cdot y_2) = (\frac{z}{z_1})\cdot z_2$ true if all the variables are decimal and positive numbers ?

1

There are 1 best solutions below

0
On

$$ \frac{xx_2}{x_1} + \frac{yy_2}{y_1} = \frac{zz_2}{z_1} $$ $$\Leftrightarrow \frac{xx_2}{x_1} + \frac{yy_2}{y_1} = \frac{(x+y)(x_2+y_2)}{(x_1+y_1)}$$ $$\Leftrightarrow \left( \frac{x+y}{x_1+y_1} - \frac{x}{x_1} \right)x_2 = \left( \frac{y}{y_1} - \frac{x+y}{x_1+y_1}\right)y_2 $$ $$\Leftrightarrow \frac{(yx_1 - xy_1)x_2}{x_1} = \frac{(yx_1 - y_1x)y_2}{y_1} $$ $$\Leftrightarrow yx_1-xy_1 = 0 \text{ or } \frac{x_2}{x_1} = \frac{y_2}{y_1}$$ $$\Leftrightarrow \frac{x_1}{x} = \frac{y_1}{y} \text{ or } \frac{x_2}{x_1} = \frac{y_2}{y_1}$$ So, it seems your equality holds only in the above two cases.