Answer:
They multiplied the exponents instead of adding.
Step-by-step explanation:
Essentially, 2^2 x 2^3 is (2)(2) x (2)(2)(2) which is 5, not 6
Answer:
18225
Step-by-step explanation:
Answer:
Minimum 8 at x=0, Maximum value: 24 at x=4
Step-by-step explanation:
Retrieving data from the original question:
![f(x)=x^{2}+8\:over\:[-1,4]](https://tex.z-dn.net/?f=f%28x%29%3Dx%5E%7B2%7D%2B8%5C%3Aover%5C%3A%5B-1%2C4%5D)
1) Calculating the first derivative

2) Now, let's work to find the critical points
Set this
0, belongs to the interval. Plug it in the original function

3) Making a table x, f(x) then compare
x| f(x)
-1 | f(-1)=9
0 | f(0)=8 Minimum
4 | f(4)=24 Maximum
4) The absolute maximum value is 24 at x=4 and the absolute minimum value is 8 at x=0.
Answer:
PR is an altitude
QT is a median.
Step-by-step explanation:
The altitude is the perpendicular height and the median is a line from 1 vertex to the middle of the opposite side.
Well this is simple a calculator type problem...but if you are curious as the the algorithm used by simple calculators and such...
They use a Newtonian approximation until it surpasses the precision level of the calculator or computer program..
A newtonian approximation is an interative process that gets closer and closer to the actual answer to any mathematical problem...it is of the form:
x-(f(x)/(df/dx))
In a square root problem you wish to know:
x=√n where x is the root and n is the number
x^2=n
x^2-n=0
So f(x)=x^2-n and df/dx=2x so using the definition of the newton approximation you have:
x-((x^2-n)/(2x)) which simplifies further to:
(2x^2-x^2+n)/(2x)
(x^2+n)/(2x), where you can choose any starting value of x that you desire (though convergence to an exact (if possible) solution will be swifter the closer xi is to the actual value x)
In this case the number, n=95.54, so a decent starting value for x would be 10.
Using this initial x in (x^2+95.54)/(2x) will result in the following iterative sequence of x.
10, 9.777, 9.774457, 9.7744565, 9.7744565066299210578124802523397
The calculator result for my calc is: 9.7744565066299210578124802523381
So you see how accurate the newton method is in just a few iterations. :P