document.write( "Question 615176: find A union B and A intersection B in:
\n" );
document.write( "A=(5,10,15,...)
\n" );
document.write( "B=(10,20,30,...) \n" );
document.write( "
Algebra.Com's Answer #387009 by jim_thompson5910(35256)![]() ![]() ![]() You can put this solution on YOUR website! A U B = {5, 10, 15, 20, 25, 30, 35, 40, ...}\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "A intersect B = {10, 20, 30, ...}\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "Note: B is a subset of A, so A U B = A and A intersect B = B \n" ); document.write( " |