Answer:
tan T = 3/4
tan U = 4/3
Step-by-step explanation:
The tangent ratio is opposite / adjacent. The ratio will vary for each angle since the perspective of each angle will be different. For example Angle T has an adjacent side of 4 while Angle U has an adjacent side of 3. The tangent ratios for Angles U and T are listed below:
tan T = 3/4
tan U = 4/3
I believe its B. Stratified because the owner had to speak to ten individuals, meaning he divided it into smaller groups.
Answer:
a is <u>5</u><u>3</u><u>.</u><u>8</u><u>°</u><u>,</u> and b is <u>3</u><u>6</u><u>.</u><u>2</u><u>°</u>
Step-by-step explanation:
Using sine trig rule:


Summation of angles of triangle:

It takes value from a user and then user the operation of (+,-,*/).
i used c++ programming language to solve this program:
#include<iostream>
using namespace std;
int main() {
int var1, var2;
char operation;
cout << "Enter the first number : ";
cin >> var1;
cout << endl;
cout <<"Enter the operation to be perfomed : ";
cin >> operation;
cout << endl;
cout << "Enter the second nuber : ";
cin >> var2;
cout << endl;
bool right_input = false;
if (operation == '+') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 + var2);
right_input = true;
}
if (operation == '-') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 - var2);
right_input = true;
}
if (operation == '*') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 * var2);
right_input = true;
}
if (operation == '/' && var2 != 0) {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 - var2);
right_input = true;
}
if (operation == '/' && var2 == 0) {
cout << "Error. Division by zero.";
right_input = true;
}
if (!right_input) {
cout << var1 << " " << operation << " " << var2 << " = " << "Error;";
cout << "Invalid Operation!";
}
cout << endl;
system("pause");
return 0;
}