document.write( "Question 4398: Temperature is measured in two scales (there are others too): Fahrenheit and Centigrade. The equation that converts C degrees to F degrees is:
\n" );
document.write( "f=(9/5)c+2
\n" );
document.write( "Now, take the above equation and solve it for C so you can convert the other way (convert F degrees to C degrees). How would I do this? \n" );
document.write( "
Algebra.Com's Answer #2944 by guapa(62)![]() ![]() ![]() You can put this solution on YOUR website! First of all: The formula you stated is not quite right. F=(9/5)C+32 (not +2) \n" ); document.write( "Now, solving this formula for C you have to first divide both sides by 9/5. The rule says that dividing by a fraction you multiply by its reciprocal which is 5/9. Thus: \n" ); document.write( "F*(5/9)= C+32*(9/5)*(5/9) \n" ); document.write( "F(5/9)= C+32 Now substract 32 from both sides \n" ); document.write( "F-32(5/9) = C+32-32 \n" ); document.write( "Your final formula is: \n" ); document.write( "C=(5/9)F-32 \n" ); document.write( " |