Answer:
summary
Step-by-step explanation:
Answer:
return 0;
Step-by-step explanation:
The Fibonacci numbers such that each number is the sum of the two preceding ones, but the first therm of the sequence cannot be built by this rule.
In that 
Then you may define it in the base case
return 0;
You simply have to take the linear equation form (ax + by = c) and solve for y. So you get:
by = c - ax
y = c/b - ax/b
Since c/b will be a constant, you can replace it with any variable (i.e. b), and so that represents the y-intercept and a/b will also be a constant, so that can also be replaced by any variable (i.e. m), and it represents the slope.