Answer:
39 feet
Step-by-step explanation:
take the tree as AB , the distance between the man and the tree as BC, the distance between the man and the tip of the shadow CD and the point intersecting the hypotenuse CE
since CE parallel to AB we can BPT
CE/AB = CD/BD
6/32= CD/48
CD = 9 feet
since CD is feet
BC is 48-9 = 39 feet
Given:
The equation is:

To find:
The solution for the given equation.
Solution:
We have,

It can be written as:



Taking square root on both sides, we get
[Radius cannot be negative]


Therefore, the value of r is about 6.36 cm.
Answer: How many boys want to go skating
Step-by-step explanation: sorry if wrong but if you add 50 and 45 and 60 you get 155 that is not 210 so 2
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;
}
Answer:
see explanation
Step-by-step explanation:
Calculate the slope m using the slope formula
m = 
with (x₁, y₁ ) = (- 5, 4 ) and (x₂, y₂ ) = (2, - 3 )
m = 
Her error was subtracting 5 from 2 instead of - 5 from 2
m =
=
= - 1 ← corrected solution