Respuesta :

The value of h(3) is -1.

What are Arithmetic operations?

Arithmetic operations can also be specified by subtracting, dividing, and multiplying built-in functions. The operator that performs the arithmetic operation is called the arithmetic operator.

Operators who let do basic mathematical calculations.

Given the system of expression as :

h(1) = -2

h(2) = 1

h(n) = h(n - 2) + h(n - 1)

To determine the value of h(3)

⇒ h(n) = h(n - 2) + h(n - 1)

Substitute the value of n = 3 in the above expression,

⇒ h(3) = h(3 - 2) + h(3 - 1)

⇒ h(3) = h(1) + h(2)

Substitute the values of h(1) = -2 and h(2) = 1 in the expression,

⇒ h(3) = -2 + 1

⇒ h(3) = -1

Learn more about Arithmetic operations here:

brainly.com/question/25834626

#SPJ1