Answer:
0.5625 ft^2
Step-by-step explanation:
area of square = side * side
A = s^2
A = (0.75 ft)^2 = (0.75 ft)(0.75 ft) = 0.5625 ft^2
If you have learned how to find the line of best fit manually, then you can do it that way. Perhaps you may want to just find a line that can connect at least two of the points and I believe that that line will be able to represent the other points because, in general, the points are pretty close to one another.
If you don't want to do it manually and have a graphing calculator (which I recommend) then you can use that to find the line of best fit (and if you want then you can see how precise your points are with your r^2 value). Or there is a website (http://illuminations.nctm.org/Activity.aspx?id=4186), which you can use to help you to find the equation of that particular line.
Once you have that done, then you can substitute 2009 for the x value in the equation and then see what y value the equation produces. That will then be your answer :)
✦ ✦ ✦ Beep Boop - Blu Bot! At Your Service! Scanning Question . . .
Code: Green! Letters, Numbers, and Variables Received! ✦ ✦ ✦
--------------------------------------------------------------------------------------------------------------Question: x3+y3+z3=k, with k being all the numbers from one to 100
--------------------------------------------------------------------------------------------------------------Answer: X = -80538738812075974, Y = 80435758145817515, and Z = 12602123297335631.
-------------------------------------------------------------------------------------------------------------
Answer:
Step-by-step explanation:
(0, 3) (5, 1)
(1-3)/(5-0) = -2/5 is the slope
Answer:
f(n)=f(n-1)+f(n-2)
f(1)=1x
f(2)=1x
Step-by-step explanation:
This is the fibonacci sequence with each term times x.
Notice, you are adding the previous two terms to get the third term per consecutive triples of the sequence.
That is:
1x+1x=2x
1x+2x=3x
2x+3x=5x
3x+5x=8x
So since we need the two terms before the third per each consecutive triple in the sequence, our recursive definition must include two terms of the sequence. People normally go with the first two.
f(1)=1x since first term of f is 1x
f(2)=1x since second term of f is 1x
Yes, I'm naming the sequence f.
So I said a third term in a consecutive triple of the sequence is equal to the sum of it's two prior terms. Example, f(3)=f(2)+f(1) and f(4)=f(3)+f(2) and so on...
Note, the term before the nth term is the (n-1)th term and the term before the (n-1)th term is the (n-2)th term. Just like before the 15th term you have the (15-1)th term and before that one you have the (15-2)th term. That example simplified means before the 15th term you have the 14th and then the 13th.
So in general f(n)=f(n-1)+f(n-2).
So the full recursive definition is:
f(n)=f(n-1)+f(n-2)
f(1)=1x
f(2)=1x