Answer:
x=165
Step-by-step explanation:
Multiply both sides by 15
15(x/15)=11*15
x=165
Answer:
D)the time (in hours) a 4-year-old spends unsupervised per day
Step-by-step explanation:
Given that 4-year-olds in a certain country average 3 hours a day unsupervised and that most of the unsupervised children live in rural areas, considered safe
X - the time (in hours) a 4-year-old spends unsupervised per day
X is N(3,1.8)

Answer:
12
Step-by-step explanation:
Answer:
return 0;
Step-by-step explanation:
The Fibonacci numbers such that each number is the sum of the two preceding ones, but the first therm of the sequence cannot be built by this rule.
In that 
Then you may define it in the base case
return 0;
The triangle has sides a,b,c such that
a = 2*sqrt(5), b = sqrt(5), and c = 2*sqrt(10)
Square each value
a = 2*sqrt(5)
a^2 = (2*sqrt(5))^2
a^2 = 2^2(sqrt(5))^2
a^2 = 4*5
a^2 = 20
b^2 = 20 for similar reasons as side 'a'
c = 2*sqrt(10)
c^2 = (2*sqrt(10))^2
c^2 = 2^2*(sqrt(10))^2
c^2 = 4*10
c^2 = 40
------------------------------------
Using the pythagorean theorem, we see that
a^2 + b^2 = c^2
20 + 20 = 40
40 = 40
So the initial equation a^2 + b^2 = c^2 is true making the triangle with sides a,b,c defined above to be a right triangle