document.write( "Question 968110: how many ways there are to remove three elements from the sequence 1 4 2 5 7 3 8 9, so that the remaining from an increasing sequence\r
\n" );
document.write( "\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #692244 by quixote(1)![]() ![]() ![]() You can put this solution on YOUR website! Make a graph of the sequence, it will help to visualize\r \n" ); document.write( "\n" ); document.write( "We need to keep 5 numbers:\r \n" ); document.write( "\n" ); document.write( "Case 1: begin with 1 ( \n" ); document.write( " case1A: begin with 14 and choose 3 from (5789)----> 4 ways \n" ); document.write( " case1B1: begin with 12 and choose 3 from (5789)----> 4 ways \n" ); document.write( " case1B2: begin with 123 and then we left with (89)---> 1 way \n" ); document.write( " case1C: begin with 15 and then we left with (789)----> 1 way\r \n" ); document.write( "\n" ); document.write( "Case 2: Begin with 4 and then we left with (5789) -----> 1 way \n" ); document.write( "Case 3: Begin with 2 and then we again left with (5789)----> 1 way\r \n" ); document.write( "\n" ); document.write( "Hence total #ways = 12 \n" ); document.write( " |