If you would like to solve (- 0.5) / (- 0.5) and - 50 / (- 0.5), you can do this using the following few steps:
(- 0.5) / (- 0.5) = 0.5 / 0.5 = 1
- 50 / (- 0.5<span>) = 50 / 0.5 = 50 / (5/10) = 50 / (1/2) = 50 * 2/1 = 100
</span>
The correct results would be: (- 0.5) / (- 0.5) = 1 and - 50 / (- 0.5<span>) = 100.</span>
Answer:
2/3<9/10; I used 3/4 as a benchmark.
Step-by-step explanation:
2/3<1/2; I used 1/2 as a benchmark.
2/3 = 0.(20/3) = 0.667
1/2 = 0.(10/2) = 0.5
So this is wrong, as 0.667 > 0.5.
1/2=3/5; I used 1/4 as a benchmark.
1/2 = 0.(10/2) = 0.5
3/5 = 0.(30/5) = 0.6
0.5 != 0.6, so this is wrong.
2/3<9/10; I used 3/4 as a benchmark.
2/3 = 0.(20/3) = 0.667
9/10 = 0.(90/10) = 0.9
So this is correct, as 0.667 < 0.9
3/4<2/3; I used 1/2 as a benchmark.
3/4 = 0.(30/4) = 0.75
2/3 = 0.(20/3) = 0.667
0.75 > 0.667, so this is wrong.
<u>Explanation:</u>
The rate is 8. It's attached to the "x". When graphed, 8 is the slope.
The y-intercept represents the initial value, or the starting amount of money in Rose's bank account.
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: