Answer:
Gradient is = 0.375
Step-by-step explanation:
Rise = 3
Run = 8
Answer:
0.7486 = 74.86% observations would be less than 5.79
Step-by-step explanation:
I suppose there was a small typing mistake, so i am going to use the distribution as N (5.43,0.54)
Problems of normally distributed samples can be solved using the z-score formula.
In a set with mean
and standard deviation
, the zscore of a measure X is given by:

The Z-score measures how many standard deviations the measure is from the mean. After finding the Z-score, we look at the z-score table and find the p-value associated with this z-score. This p-value is the probability that the value of the measure is smaller than X, that is, the percentile of X. Subtracting 1 by the pvalue, we get the probability that the value of the measure is greater than X.
The general format of the normal distribution is:
N(mean, standard deviation)
Which means that:

What proportion of observations would be less than 5.79?
This is the pvalue of Z when X = 5.79. So



has a pvalue of 0.7486
0.7486 = 74.86% observations would be less than 5.79
Answer:
73 mph during the second hour!
Step-by-step explanation:
Hour 1=54 mph
Hour 2=? mph
Hour 3=82 mph
Total=209 mph
this means that 209=82+54+?
Simplify it and you will get 73
73 mph
Answer:
3/10
Step-by-step explanation:
(60y-18)=2(8-16)
60y-18=16-16
60y-18=0
60y=18 /:60
y= 18/60=3/10
Answer:
public class MovieRental
{
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
System.out.print("Enter the number of movie rentals: ");
int movieRentals = in.nextInt();
System.out.print("Enter the number of members referred to the video club: ");
int memberReferral = in.nextInt();
in.close();
double discountVal = Math.min(movieRentals + memberReferral, 75);
System.out.println("The discount is equal to: " + discountVal);
}
}