Answer:
252m^3
Step-by-step explanation:
Multiply all the numbers.
Answer:
See below. <u><em>I assume that (x) = 8x2 - 7x + 3 is really (x) = 8x^2 - 7x + 3</em></u>
Step-by-step explanation:
Substitute the value of x given in f(x) into the equation f(x) = 8x^2 - 7x + 3
For example, f(0) would be f(0) = 8(0)^2 - 7(0) + 3. f(0) = 3
f(-2) would be f(-2) = 8(-2)^2 - 7(-2) + 3.
= 8*4 + 14 +3
= 32 + 17 therefore f(-2) = 49
<u>x</u> <u>f(x)</u>
-2 49
-1 18
0 3
1 4
2 21
Here are the answers to the questions above:
1. Based on the list of fees above, the one that does not contribute to the <span>initial cost of leasing a car is the FINAL PAYMENT. Answer would be option B.
2. In leasing a car, the amount that does not affect the total cost is the PRINCIPAL CHARGE, and the answer for this is option A.
Hope this helps.</span>
Answer:
clc%clears screen
clear all%clears history
close all%closes all files
p=250;
M=[];
for i=1:100000
re=0;
S=0;
while(S<=1)
S=S+rand;
re=re+100;
end
M(i)=re;
end
disp('Expected received money is');
mean(M)
disp('Since expcted is greater than what we pay. So, we will play')
Step-by-step explanation: