Applying the Trigonometry ratio, CAH, the missing side is, x = 1.9.
<h3>How to Solve a Right Triangle Using Trigonometry Ratio</h3>
The Trigonometry Ratios are:
- SOH - sin∅ = opp/hyp.
- CAH - cos∅ = adj/hyp.
- TOA - tan∅ = opp/adj.
Thus, given:
∅ = 51°
hyp = 3
adj = x
cos 51 = x/3
x = (cos 51)(3)
x = 1.9
Thus, applying the Trigonometry ratio, CAH, the missing side is, x = 1.9.
Learn more about Trigonometry Ratio on:
brainly.com/question/4326804
Answer:
6
Step-by-step explanation:
1+3=4 4-2=2 2+4=6
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);
}
}