0.555555556 so that's it hope this helped
Answer:
x ≥ -5
Step-by-step explanation:
If we have a translation to left c units, we write " x + c " in the function, and
If we have a translation to right c units, we write " x - c" in the function
If we have vertical translation up b units, we "add b to the function", and
If we have vertical translation down b units, we "subtract b to the function"
The parent function is
Since translation left 5 units and up 3 units, we can write:
The domain is affected by the square root sign and we know the number under the square root CANNOT be negative, so we can say:
x + 5 ≥ 0
x ≥ -5
This is the domain.
6(-5n+7)=0
We simplify the equation to the form, which is simple to understand
6(-5n+7)=0
Reorder the terms in parentheses
+(-30n+42)=0
Remove unnecessary parentheses
-30n+42=0
We move all terms containing n to the left and all other terms to the right.
-30n=0-42
We simplify left and right side of the equation.
-30n=-42
We divide both sides of the equation by -30 to get n.
n=1.4
Hope this helps!
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: