Answer:
238.095238%
Step-by-step explanation:
A functions is discontinuous if it has stuff like holes, jumps, or vertical asymptotic. In addition, it's continuous if it stays in a line the whole time (it doesn't have to be straight or anything!)
A=p(1+i/m)^mn
A=3,500×(1+0.0229÷12)^(12×6)
A=4,014.98
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: