Answer:
8 ft^2
Step-by-step explanation:

area of ABC is:

area of ABC is 18 square ft, then

now you can find h1 and the area for EFG
Answer:
Step-by-step explanation:
7y+5+3y+5=70
10y+10=70
10y=60
y=6
7(6)+5= 42+5= 47
3(6)+5= 18 + 5 =23
47+23= 70
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.