Step-by-step explanation:
When you multiply a fraction by another fraction or a fraction by a whole number, the rules of fractions dictate the form of the answer. If at least one of the values is negative, you also use the rules for positive and negative signs to determine if the result is positive or negative.
Answer:
the answer in 36cm squared
Step-by-step explanation:
pie r squared
Answer:
The answer to your question is w = 1.2
Step-by-step explanation:
Data
Equation 7(w + 2) + 0.5w = 5
Expand 7w + 14 + 0.5w = 5
Simplify like terms (7w + 0.5w) + 14 = 5
7.5w + 14 = 5
Subtract 14 in both sides
7.5w + 14 - 14 = 4 - 15
Simplify
7.5w = - 9
Divide both side by 7.5 7.5/7.5w = 9/7.5
Simplify
w = 1.2
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: