you can measure the first angle with a protractor and then measure the other one see if there is a different angle
This is how it would look like, hope that this is not too late to help you yet!
Have a great day!
Answer:
B. 11/18
Step-by-step explanation:
Solve using algebra.
x = 0.611111...
10x = 6.111111...
10x - x = 6.111111.. - 0.61111111..
9x = 5.5
x = 5.5/9
x = 11/18
1720 - 1040 = 680
680/7 = 97.1
I would put them in intervals of 100
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: