document.write( "Question 48895: please help! I have been looking at this question for just over a week and ive put it off and done my others now this is one of the last ones!\r
\n" );
document.write( "\n" );
document.write( "let p : N x N --> N be the function defined by\r
\n" );
document.write( "\n" );
document.write( "p(m,n) ={1 if n=0;
\n" );
document.write( " m * p (m, n-1) otherwise;) \r
\n" );
document.write( "\n" );
document.write( "what is the value of p (2, 3)?
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #32405 by alka001(14)![]() ![]() ![]() You can put this solution on YOUR website! The fuction is p(m,n)=(1 if n=0; \n" ); document.write( " m* p(m,n-1) otherwise.)\r \n" ); document.write( "\n" ); document.write( "p(2,3)=2*(P(2,2)) \n" ); document.write( " =2*(2*p(2,1)) \n" ); document.write( " =2*2*(2*p(2,0)) \n" ); document.write( " =2*2*2*1 n=0 \n" ); document.write( " =8 \n" ); document.write( " |