Answer:
The second table of values.
Step-by-step explanation:
Let's put the x-values in the second table of values in correct number order:
x: -3, -2, -1, 0, 1
Now, let's write out the y-values in correct number order:
y: 1/4, 1, 4, 16, 64
Finally, let's rewrite the second table of values with the x-values in order and the corresponding y-values underneathe:
x: -3, -2, -1 0 1
y: 64, 16, 4, 1, 1/4
As it can be seen, as the x-values get bigger in value, the y-values get smaller exponentially, which is the definition of exponential decay.
Answer:
3y=x-1 OR y=⅓x-⅓
Step-by-step explanation:
Lets call the equation y=-3x+7 line l1
the other line passing through (4,1) l2
If two lines are perpendicular,then the product of their roots=-1
That is m(l1)×m(l2)=-1
Slope of l1=-3 therefore slope of l2=-1÷-3=⅓
Now that we have determined the slope of l2 we move on to find it's equation using the point-slope form
y-y1=m(x-x1)
y-1=⅓(x-4)
3y-3=x-4
3y=x-4+3
3y=x-1 OR y=⅓x-⅓
4/16 and 1/4 happy to help :)
Would use the algorithm for solving square root.
For square root, √n
x₁ = 0.5(x₀ + n/x₀)
(This formula is known and for square root, and can be derived using Newton-Raphson's approximation equation)
Where x₀ is the initial guess. x₁ becomes the new guess.
For √100.6 let our initial guess be 10, x₀ = 10, n = 100.6
Our approximation shall be to 3 decimal places. Once we get the same answer twice we stop the algorithm.
x₀ = 10, x₁ = 0.5(x₀ + n/x₀), x₁ = 0.5(10 + 100.6/10) = 10.030, x₁ = 10.030
x₂ = 0.5(x₁ + n/x₁), x = 0.5(10.030 + 100.6/10.030) ≈10.015, x₂ ≈ 10.030 (to 3 decimal places)
Since x₂≈ x₁, the algorithm stops.
So the √100.6 is ≈ 10.030 to 3 decimal places.
I hope this helps.