document.write( "Question 288035: Translate the following statements into logical expressions:
\n" );
document.write( "if l complete tenth class,then l can go to study intermediate or to study polytechnic. \n" );
document.write( "
Algebra.Com's Answer #208815 by amnd(23) You can put this solution on YOUR website! For implication, the statement p \"implies\" q (written as p-> q), which means: IF p THEN q, and can be written as: NOT p OR q. Meanwhile, y OR z can be written as (y U z)\r \n" ); document.write( "\n" ); document.write( "\"IF I complete tenth class, THEN [I can go to study intermediate OR to study polytechnic]\"\r \n" ); document.write( "\n" ); document.write( "Define the statements as: \n" ); document.write( "a = I complete tenth class \n" ); document.write( "b = I can go to study intermediate \n" ); document.write( "c = I can go to study polytechnic\r \n" ); document.write( "\n" ); document.write( "The statement can be simplified: \n" ); document.write( "\"IF a THEN (b OR c)\"\r \n" ); document.write( "\n" ); document.write( "and further to\r \n" ); document.write( "\n" ); document.write( "\"NOT a OR (b OR c)\" \n" ); document.write( "\"NOT a OR b OR c\" \n" ); document.write( "~a U b U c \n" ); document.write( " |