Answer:
Step-by-step explanation:
<u>Given recursive formula:</u>
- a₁ = -1
- aₙ = - 3aₙ₋₁ + 6 for n ≥ 2
<u>The first 4 terms are:</u>
- a₁ = - 1, given
- a₂ = - 3*(-1) + 6 = 3 + 6 = 9
- a₃ = - 3*(9) + 6 = - 27 + 6 = - 21
- a₄ = - 3*(-21) + 6 = 63 + 6 = 69
|3x+1|=4 : x=−
5
3 or x=1
Pasos
|3x+1|=4
Aplicar las propiedades de los valores absolutos: Pi |u| = a, a>0 entonces u = a or u = −a
3x+1=−4 or 3x+1=4
Mostrar pasos
3x+1=−4 or 3x+1=4
Answer:
import pandas as pd
vec = pd.Series([7.12,24,4,18,12,9])
vec.plot(kind = 'hist')
Step-by-step explanation:
You can use python for that.
By doing
import pandas as pd
vec = pd.Series([7.12,24,4,18,12,9])
vec.plot(kind = 'hist')
And this is the result you get