Answer:
n < 0
Step-by-step explanation:
A negative number is one that is less than zero.
n < 0
Given:
The largest circle has a radius of R=7 units.
Let x be the radius of the large shaded circle.
The small shaded circles have a radius of 1/5 of the large shaded circle.
=> the small shaded circles have a radius of r=x/5
By adding up radii, we have the equation
2(r+x+r)=2(x/5+x+x/5)=2R=2*7=14
Simplify:
7x/5=14/2
x=5
=> r=1
Area of outer circle =

Area of large shaded circle =

Area of 4 small shaded circles =

Total area of shaded circles =

Shaded area as a fraction of that of the outer circle
Answer:
1. x = -4y ---> y = (-1/4)x
slope = -1/4. y-intercept = (0,0)
2. y = -2x + 4
3. y = (1/3)x - 1
Step-by-step explanation:
1. Re-write your equation so that x is on the right and y is on the left:
x = -4y ---> y = (-1/4)x
slope = -1/4. y-intercept = (0,0)
2. y-intercept = (0,4) ----> P1
x-intercrpt = (2,0) ----> P2
slope m = (y2 - y1) / (x2 - x1)
= (0 - 4)/(2 - 0)
= -2
therefore, y - y1 = mx - x1 ---> y - 4 = -2x
or y = -2x + 4
3. y-intercept = (0,-1)
x-intercept = (3,0)
m = (0 - (-1)) / (3 -0) = 1/3
y - (-1) = (1/3)x - 0 ---> y = (1/3)x - 1
(0.7)(0.4)=0.28 because 7×4 is 28 and you just add a 0
Answer:
recursive: f(0) = 7; f(n) = f(n-1) -8
explicit: f(n) = 7 -8n
Step-by-step explanation:
The sequence is an arithmetic sequence with first term 7 and common difference -8. Since you're numbering the terms starting with n=0, the generic case will be ...
recursive: f(0) = first term; f(n) = f(n-1) + common difference
explicit: f(n) = first term + n·(common difference)
To get the answer above, fill in the first term and common difference values.