document.write( "Question 1075963: this is one function:\r
\n" );
document.write( "\n" );
document.write( "{x+y=c
\n" );
document.write( "{x-y=a\r
\n" );
document.write( "\n" );
document.write( "I need to find x and y \n" );
document.write( "
Algebra.Com's Answer #690625 by Boreal(15235) You can put this solution on YOUR website! {x+y=c \n" ); document.write( "{x-y=a \n" ); document.write( "2x=c+a \n" ); document.write( "x=(c+a)/2 \n" ); document.write( "y=c-x=c-(c+a)/2 \n" ); document.write( "y=(2c-c-a)/2=(c-a)/2 \n" ); document.write( "Put in numbers x=4 y=2 \n" ); document.write( "c=6, a=2 \n" ); document.write( "x=(6+2)/2, which is 4 \n" ); document.write( "y=(6-2)/2, which is 2 \n" ); document.write( " |