<h3>
Answer: 5 < x < 21</h3>
Explanation:
Let x be the length of the third side. We can't find the exact value of x, as we don't have enough info, but we can find possible values for x.
The lower boundary for x is 13-8 = 5. It must be larger than this value.
At the same time, x must be smaller than 13+8 = 21 as well.
So x > 5 and x < 21 becomes 5 < x < 21
In short, x is between 5 and 21. It cannot equal either endpoint.
Answer:
600
Step-by-step explanation:
36 times 18=648 but u need to add o the nearest hundred
-2/3x+9=4/3x-3 original problem add 2/3x to both sides
9=6/3x-3 simplify 6/3 to 2 and add 3 to both sides
12=2x divide both sides by 2
x=6
hope that helps
In order to solve this problem, you must draw a right triangle first to help you visualize the path of the jogger.
You are given 0.5 miles north (which will be the height of the right triangle), and 1.3 miles (which will be the hypotenuse of the triangle).
Using Pythagorean Theorem: a²+b²=c², we have:
0.5² + b² = 1.3²
b = 1.3²-0.5²
b = 1.2 miles
Answer:
2
I am taking my first programming course, so my apologies if this is a dumb question/possibly classified by the wrong category on this site. One of the exercise problems I am working on is the following:
Define a function print_total_inches, with parameters num_feet and num_inches, that prints the total number of inches. Note: There are 12 inches in a foot. Ex:
print_total_inches(5, 8) prints:
Total inches: 68
Step-by-step explanation: