How would you solve this? Please give an explanation.

The first three elements of the recursive series are 6, 10, 8. (Correct choice: B)
In this question we have a kind of recursive function known as Fibonacci's function, where a value of the series is generated from at least immediately previous elements. In this case, we need to find the first three elements from the fifth and fourth elements of the series:
[tex]a_{n-2} = a_{n-1} - a_{n} + 4[/tex]
a₄ = a₅ - a₆ + 4
a₄ = - 2 - 0 + 4
a₄ = 2
a₃ = a₄ - a₅ + 4
a₃ = 2 - (- 2) + 4
a₃ = 8
a₂ = a₃ - a₄ + 4
a₂ = 8 - 2 + 4
a₂ = 10
a₁ = a₂ - a₃ + 4
a₁ = 10 - 8 + 4
a₁ = 6
The first three elements of the recursive series are 6, 10, 8. (Correct choice: B)
To learn more on recursive series: https://brainly.com/question/8972906
#SPJ1