document.write( "Question 1054216: what is the areas under the standard normal curve:
\n" );
document.write( "a.)to the right of z=1.29
\n" );
document.write( "b.)between z=-1.99 amd z=-1.89
\n" );
document.write( "c.)to the left of z=1.11
\n" );
document.write( "d.)between z=1.34 and z=2.99 \n" );
document.write( "
Algebra.Com's Answer #669422 by ewatrrr(24785)![]() ![]() You can put this solution on YOUR website! TI syntax is normalcdf(smaller z, larger z). \n" ); document.write( "a.)to the right of z=1.29 \n" ); document.write( "A = normalcdf(1.29, 100) 100 a placeholder \n" ); document.write( "b.)between z=-1.99 amd z=-1.89 \n" ); document.write( "A = normalcdf(-1.99, -1.89) \n" ); document.write( "c.)to the left of z=1.11 \n" ); document.write( "A = normalcdf(-100, 1.11) -100 a placeholder \n" ); document.write( "d.)between z=1.34 and z=2.99 \n" ); document.write( "A = normalcdf(1.34, 2.99) \n" ); document.write( " |