9x - 6 = 48
9x = 54
x = 6
Nice days..........
The roots routine will return a column vector containing the roots of a polynomial. The general syntax is
z = roots(p)
where p is a vector containing the coefficients of the polynomial ordered in descending powers.
Given a vector
which describes a polynomial
we construct the companion matrix (which has a characteristic polynomial matching the polynomial described by p), and then find the eigenvalues of it (which are the roots of its characteristic polynomial)
Example
Here is an example of finding the roots to the polynomial
--> roots([1 -6 -72 -27])
ans =
12.1229
-5.7345
-0.3884
So you basically add all the numbers together multiply them by 100& divide by 54
Answer:
1.25 * N
Step-by-step explanation:
We have to increase N by 25%.
The first thing is to say how the percentage works in these cases, N would be our 100% and the increase would be 25% in this case, therefore, the initial value must be added (that is, N, 100%) and to that if add 25% of the initial value (that is, + 25% N).
Thus:
100% * N + 25% * N = N * (100% + 25%)
N * (125%) = 1.25 * N
So to increase N is 25% it would be 1.25 * N