document.write( "Question 508333: Write the compound statement in symbols.
\n" );
document.write( "Let r = The food is good, p = I eat too much, q = I'll exercise.\r
\n" );
document.write( "\n" );
document.write( "If the food is good and if I eat too much, then I'll exercise.
\n" );
document.write( " (Points : 2)
\n" );
document.write( " r ^(p -> q)
\n" );
document.write( " (r ^ p)-> q
\n" );
document.write( " p ->(r ^ q)
\n" );
document.write( " r ->(p ^ q)
\n" );
document.write( "WHICH OF THE ABOVE IS CORRECT? \n" );
document.write( "
Algebra.Com's Answer #340942 by jim_thompson5910(35256)![]() ![]() ![]() You can put this solution on YOUR website! r = The food is good, p = I eat too much, q = I'll exercise.\r \n" ); document.write( " \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "\"If the food is good and if I eat too much\" translates to r ^ p which can be written as (r ^ p)\r \n" ); document.write( " \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "So \"If the food is good and if I eat too much, then I'll exercise.\" translates to (r ^ p) -> q \n" ); document.write( " |