Answer:
The Obvious
Euler graph all connects almost like a circle
A tree graph looks like it branches off each other with no line connect in a circle like form
well first think about it, 60 min in an hour, so 32 fluid ounces times 60 = 1920 fluid ounces, from there you can convert fluid ounces to practically anything, for instance, 1920 fluid ounces = 24 cups.
go to this address to find out more.
https://www.google.com/search?q=another+name+for+observations&rls=com.microsoft:en-US:IE-Address&ie=...
Hello from MrBillDoesMath!
Answer:
11
Discussion:
Let "n" be the smaller number. Then
n * (n+5) = 176.
My first reaction to this problem was to factor 176 in my head. That's 176 = 16 * 11 and 16 is 5 more than 11. So that's the solution!.... Now let's solve it using the brute force approach:
n(n+5) = 176 =>
n^2 + 5n - 176 = 0 => use the quadratic formula
n = ( -5 +\- sqrt( 5^2 - 4(1)(-176)) ) /2
= ( -5 +\- sqrt( 25 + 704) )/ 2
= ( -5 +\- sqrt (729) ) /2 => as sqrt(729) = 27
= (-5 +\- 27) / 2 =>
= (-5 + 27)/2 or ( -5 -27)/2 =>
= 22/2 or -32/2 =>
= 11 or -16
But -16 is not allowed as the question wants a positive value.
Thank you,
MrB