It would be (x+3)^5 unless x stands for a number
Answer:
title ('Graph of Speed agaist Distance');
xlabel('Distace in miles');
ylabel('Speed in miles per hour');
legend('u','v');
x = 0: 0.01:2;
u = 2* log10(60*x + 1);
plot (x,u);
hold on
v = 2* cosd (6*x);
plot (x,v)
grid on
Step-by-step explanation:
#Define the title of the plot
title ('Graph of Speed against Distance');
#Define both the x-axis ad y-axis label of the plot
xlabel('Distance in miles');
ylabel('Speed in miles per hour');
#Define the what each plot sigifies
legend('u','v');
#Define the x-axis range of the plot
x = 0: 0.01:2;
#Define the function u and plot it on the graph
u = 2* log10(60*x + 1);
plot (x,u);
#allow another plot to be on the same graph
hold on
#Define the function v and plot it on the graph
v = 2* cosd (6*x);
plot (x,v)
#make the grid visible
grid on
The probability is 8.7%.
To find P(X<2), we find P(X = 1 or X = 0). For a binomial distribution, we use the formula

For this problem, p=0.6 and n=5:
50 employees work 40 hours/week at $20/hour.
Their combined regular hours salary is 50 * 40 * $20 = $40,000.
15 employees worked 4 hours at $30/hour.
Their combined overtime salary is 15 * 4 * $30 = $1,800.
The total payroll is the regular hours plus the overtime:
$40,000 + $1,800 = $41,800
The overtime is the following percentage of the total payroll:
$1,800/$41,800 * 100% = 4.3%
Answer: 4.3%
Answer:
10 m / minute
Step-by-step explanation:
Starting position = North ; back to North gives a Displacement of 0 ; the from that position to 900 m south gives a final Displacement of 900
Displacement / time
Displacement = 900
Time = 9 minutes
900 / 9
= 10 m / minute