Answer: Area=36
Step-by-step explanation:
Answer:
13
Step-by-step explanation:
7 more waiters than cooks
w = 7 + c
w = 7 + 6
w = 13
Answer:
1/2 ; 1/4
Step-by-step explanation:
Number of cards in a deck = 52
Number of red cards = 26
Number of spades = 13
Probability of event A :
P(A) = required outcome / Total possible outcomes
P( red card) = number of red cards / total cards in deck
P(red card) = 26 / 52 = 1/2
P(spade) = number of spades / total cards in deck
P(red card) = 13 / 52 = 1 / 4
the answer is multiply the current term by 2 and add 1 to find the next term.
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.