What do you want us to answer??
The probability that a three shows on at least one of the dice is 11/36.
<h3>How to calculate the probability?</h3>
It should be noted that of probability means the likelihood of the occurence of an event.
The probability that a three shows on at least one of the dice will be:
= 11/36
This can be seen from the table that is attached.
The probability that the total is less than 8 will be:
= 21/36
= 7/12
Here, there are 21 places where the total is less than 8.
Learn more about probability on:
brainly.com/question/24756209
#SPJ1
Answer:
200
Step-by-step explanation:
The price is 100%-20%=80% of the original.
So, 250*0.8 = 200
Answer:
see explanation
Step-by-step explanation:
Simplify the radical

= 
= 
Square both sides
T² =
( multiply both sides by (g + f) )
T²(g + f) = Ufg ( distribute left side )
T²g + T²f = Ufg ← subtract Ufg from both sides
T²g - Ufg + T²f = 0 ← subtract T²f from both sides
T²g - Ufg = - T²f ← factor out g from each term on the left side
g(T² - Uf) = - T²f ← divide both sides by (T² - Uf)
g = -
= 
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);
}
}