document.write( "Question 15114: I need help with four problems: I need to write a variable expression for each word phrase:
\n" );
document.write( "Problem 1: five less than y
\n" );
document.write( "Problem 2:the product of a number and 78
\n" );
document.write( "Problem 3:the quotient of a number and 9
\n" );
document.write( "Problem 4:ten increased by a number \n" );
document.write( "
Algebra.Com's Answer #7515 by jb007mi6(53)![]() ![]() ![]() You can put this solution on YOUR website! 1. if y is 10 than five less than 10 is 10-5 so 5 less than y is \n" ); document.write( "y-5 \n" ); document.write( "2. let's say your number is x and product means to multiply so it is \n" ); document.write( "x * 78 or 78x \n" ); document.write( "3.the quotient (division) of a number (x) and 9 \n" ); document.write( "x / 9 \n" ); document.write( "4. 10 increased ( addition) by a number (x) \n" ); document.write( "10+x \n" ); document.write( " |