Okay first make sure you change negative 8 to a positive 8.
Set the problem up 8 -11 -49 899 -2506
__________________
8 -11 -49 899 -2506
-88 -1096 -1576
____________________
-11 -137 -197 -4082
Your answer will be
-11x^3 - 137x^2 - 197x - 4082
Answer: (x+4)(x^2+16)
Step-by-step explanation:
x^3+4x^2+16x+64
x^3+4x^2+16x+64
=(x+4)(x^2+16)
have a nice day!!
Assuming we need to find i such that
1 ≤ i ≤ n and t[i]=i.
If we need to find only the first occurrence, we can do:
for i:1 to n {
if t[i]=i then return(i)
}
If exhaustive search is required, then put the results (values of i) in an array or a linked list, return the number of values found, and the array (or linked list).