document.write( "Question 1116525: Lisa saw a funny cat video on a website and checked every day to see how many views it had.The first day had 120 views, the second day had 360 views and the third day had 1,080 views.Assuming this pattern continues, write a function that can model the number of views Lisa’s cat video has on day x. \n" ); document.write( "
Algebra.Com's Answer #731410 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! Lisa saw a funny cat video on a website and checked every day to see how many views it had.The first day had 120 views, the second day had 360 views and the third day had 1,080 views.Assuming this pattern continues, write a function that can model the number of views Lisa’s cat video has on day x. \n" ); document.write( "---- \n" ); document.write( "1st:: 120 \n" ); document.write( "2nd:: 3*120 = 360 \n" ); document.write( "3rd:: 3*3*120 = 3^2*120 = 1080 \n" ); document.write( "---- \n" ); document.write( "xth day:: 3^(x-1)*120 \n" ); document.write( "------------- \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " |