Answer:
9/16
Step-by-step explanation:
3/2 / 8/3 =
3/2 x 3/8 = 9/16
Hope that helps!
X+7-3=1
X+4=1
-4 -4
X=-3
Copy exactly how you see it
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:
p=1
Step-by-step explanation:
2/5 + p = 4/5 + 3/5p
Multiply each side by 5 to clear the fractions
5(2/5 + p) = 5(4/5 + 3/5p)
2 +5p = 4 + 3p
Subtract 3p from each side
2+5p-3p = 4+3p-3p
2+2p = 4
Subtract 2 from each side
2+2p -2 = 4-2
2p =2
Divide by 2
2p/2 = 2/2
p=1