Answer:
(4,0) and (- 2,0): Answer
Step-by-step explanation:
Absolute value questions have two essential steps.
1. Solve the equation as it is written.
2. Solve it changing the sign of the right hand side. I will include a graph to confirm my answer
4*abs(x - 1) = 12 Divide by 4
- abs(x - 1) = 12/4
- abs(x - 1) = 3 Equate this to 3
- x - 1 = 3 Add 1 to both sides
- x - 1 + 1 = 3 + 1 Combine
- x = 4
4*abs(x - 1) = - 12 Divide by 4
- abs(x - 1) = - 12/4
- abs(x - 1) = - 3
- x - 1 = - 3 Add 1 to both sides
- x - 1 + 1 = -3 + 1
- x = - 2
So this has 2 answers
(4,0) and (- 2,0)
SAS i believe :) sorry if im wrong!
Children ticket price=£9
Adult ticket price=£17
Let adult=A
Children=C
So, 2A+3C=61 (equation 1)
3A+5C=96(equation 2)
Multiply equation 1 by 3 and equation 2 by 2
Solve equations and get the answer.
Answer:
In programming, a recursive function is a function that calls itself. Recursion is used very commonly in programming, although many simple examples (including some shown in this section) are actually not very efficient and can be replaced by iterative methods (loops or vectorized code in MATLAB).
Step-by-step explanation: