document.write( "Question 1043899: Why do I have to use different steps for the same kind of problem?
\n" );
document.write( "For x=a+b-2ab solve \"a\", all I have to do is flip it so it reads -2ab+b+a=x and then I can solve normally.
\n" );
document.write( "But for x-a=a(y-b) solve \"a\", after I +a to both sides and end up with
\n" );
document.write( "x=a(y-b)-a I can't flip it to -a+a(y-b)=x because that gives a different answer than using the additive property of equality. Why can't both be flipped when a is only on 1 side? \n" );
document.write( "
Algebra.Com's Answer #659093 by Boreal(15235) You can put this solution on YOUR website! When you add +a to both sides, you end up with x=a(y-b) PLUS a. \n" ); document.write( "You don't have to move it anywhere but factor out an a and divide by whatever was left behind after factoring. \n" ); document.write( "=======\r \n" ); document.write( "\n" ); document.write( "x=a+b-2ab \n" ); document.write( "isolate the a \n" ); document.write( "x-b=a-2ab \n" ); document.write( "factor an a out of the right side \n" ); document.write( "x-b=a(1-2b) \n" ); document.write( "divide by (1-2b) both sides \n" ); document.write( "(x-b)/(1-2b)=a \n" ); document.write( "================== \n" ); document.write( "x-a=a(y-b) \n" ); document.write( "distribute \n" ); document.write( "x-a=ay-ab \n" ); document.write( "add a to both sides \n" ); document.write( "x=ay-ab+a \n" ); document.write( "factor out an a on the right \n" ); document.write( "x=a(y-b+1) \n" ); document.write( "divide both sides by (y+b+1) \n" ); document.write( "a=x/(y+b+1) \n" ); document.write( "================= \n" ); document.write( "The approach to the problem is to usually distribute everything and then take non (in this case) factors of a and move them to the other side. Then factor an a out of everything that contains it, and divide both sides by what is left over. In some ways, it is the same kind of problem, solving for a variable. In other ways, it isn't, because the a is distributed over another pair of variables or constants, and that has to be dealt with. You could in the second add the a and have x=a(y-b)+a. That would be factored to x=a(y-b+1), because what was added happened to be a itself. \n" ); document.write( " |