You are going to want to cross multiply this, so 5/9 would multiply with 1 and 2/3 would be multiplied by x. Now you have 5/9 = 2/3x. You would divide 2/3 on both sides and get 5/6. 5/6 is your answer.
I believe the answer is acute. Hope this helps!!
3/6x+9=8
3x+9=8
3x=-1
x= -1/3
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);
}
}
You could solve this using a proportion or just by common sense.
Proportion: 8/12 = x/126
Cross multiply: 12x = 1008
1008/12 = 84
Or the common sense route is just dividing 12 by 8 then multiplying the answer by 126. Either way, you get the same answer. Hope this helps! :)
~Ash