Answer:
They each got 6 erasers.
Step-by-step explanation:
Sorry If I am wrong.
Answer:
- 4+1=5
Step-by-step explanation:
over the y axis is square root
Answer:
Equilateral Triangle
Side a = 1
Side b = 1
Side c = 1
Angle ∠A = 60° = 1.0472 rad = π/3
Angle ∠B = 60° = 1.0472 rad = π/3
Angle ∠C = 60° = 1.0472 rad = π/3
C=60°B=60°A=60°b=1a=1c=1
Area = 0.43301
Perimeter p = 3
Semiperimeter s = 1.5
Height ha = 0.86603
Height hb = 0.86603
Height hc = 0.86603
Median ma = 0.86603
Median mb = 0.86603
Median mc = 0.86603
Inradius r = 0.28868
Circumradius R = 0.57735
Vertex coordinates: A[0, 0] B[1, 0] C[0.5, 0.86603]
Centroid: [0.5, 0.28868]
Inscribed Circle Center: [0.5, 0.28868]
Circumscribed Circle Center: [0.5, 0.28868]
Step-by-step explanation:
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);
}
}
Answer:
a) A. The population must be normally distributed
b) P(X < 68.2) = 0.7967
c) P(X ≥ 65.6) = 0.3745
Step-by-step explanation:
a) The population is normally distributed having a mean (
) = 64 and a standard deviation (
) = 
b) P(X < 68.2)
First me need to calculate the z score (z). This is given by the equation:
but μ=64 and σ=19 and n=14,
and 
Therefore: 
From z table, P(X < 68.2) = P(z < 0.83) = 0.7967
P(X < 68.2) = 0.7967
c) P(X ≥ 65.6)
First me need to calculate the z score (z). This is given by the equation:
Therefore: 
From z table, P(X ≥ 65.6) = P(z ≥ 0.32) = 1 - P(z < 0.32) = 1 - 0.6255 = 0.3745
P(X ≥ 65.6) = 0.3745
P(X < 68.2) = 0.7967