Angle of elevation would be 66 degrees
The decimal is: 0.791666667<span>The rounded decimal is: 0.8</span>
Answer:
23
Step-by-step explanation:
If this is worded right, then the answer to your question is in your question
Answer:
0 < y <= 6
Step-by-step explanation:
Given:
√(x² - 6x + 9)
if -3 <= x < 3
you can write (x² - 6x + 9)
as (x-3) * (x- 3) which is (x-3)²
so now you have √{(x-3)²}, which is the same as the absolute value of x-3. In mathematics it is written as:
| x - 3 |
So √(x² - 6x + 9) = | x - 3 |
See the graph in the attachment.
for -3 <= x < 3
you get the y values bigger then ( but not equal to) 0 and smaller then or equal to 6.
This is written as 0 < y <= 6
Answer:
- recursive: a[1] = 7440; a[n+1] = a[n] -120
- explicit: a[n] = 7440 -120(n -1)
Step-by-step explanation:
The sequence of amounts in Jackson's account will be ...
7440, 7320, 7200, ...
with a first value (a1) of 7440 and a common difference (d) of -120.
The recursive formula for an arithmetic sequence is ...
a[1] = a1
a[n+1] = a[n] +d
For our sequence, the recursive formula is ...
a[1] = 7440
a[n+1] = a[n] -120
__
The explicit formula for an arithmetic sequence is ...
an = a1 +d(n -1)
For our sequence, the explicit formula is ...
a[n] = 7440 -120(n -1)