<span>answer
A) (-5,-49),(-2,-22),(3,23)
</span>when x = - 5 ; y=9x-4 = 9(-5) -4 = -49
when x = - 2 ; y=9x-4 = 9(-2) -4 = -22
when x = 3 ; y=9x-4 = 9(3) -4 = 23
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:
Answer:
j
Step-by-step explanation: