Q:

X^3-6x^2-15x+35=0, how do you find the x intercept for this problem. I keep looking this up but everywhere just gives me the answer and doesn't show how they factor out the roots.

Accepted Solution

A:
Explanation:There are 3 irrational x-intercepts for this cubic.In general, solving a cubic is not easy. There are formulas for it, and even the formulas for the real roots (which this has 3 of) involve irrational complex numbers. (Actually, there is a trigonometric formula I like for three real roots.)I like to use a graphing calculator for roots of higher-degree polynomials. A good one will find the roots to calculator precision quickly and easily. Some will even show the radical form of the roots.The first attachment shows a graph of the equation and the approximate roots. (This same calculator makes Newton's method iteration easy, so refining the roots is a snap.)The second attachment shows input and output from a graphing calculator that will actually solve this cubic. It displays the root values to calculator precision with no further effort.___You can start by trying the roots suggested by the Rational Root theorem. Here, those suggestions are ±1, ±5, and ±7. Finding the function values for these x-values will tell you there are real roots in the intervals (-5, -1), (1, 5), and (7, 35). The latter root being close to 7, but a little bit more.You can try use any of several iterative methods to refine these intervals. One commonly seen is the bisection method.We assume we're looking for roots of g(x) = 0.Bisection MethodFor this method, you need values of x that bracket the root of interest. (Possible starting values are the intervals listed above.) For each iteration, you compute the midpoint of the interval, then find the value of the function at that midpoint. The x-value of the midpoint replaces the x-value of the interval whose function value has the same sign.For example, g(7) = -21; g(8) = 43. The midpoint of the interval (7, 8) is 7.5, so we find g(7.5) = 6.875. This has the same sign as g(8), so our new interval is (7, 7.5). On the next iteration, we evaluate g(7.25).As the interval is cut in half at each iteration, it takes about 10 iterations to gain 3 decimal places in accuracy.Secant MethodThe secant method is similar to the bisection method, except that the next x-value used is not the midpoint of the interval, but is one calculated based on the slope of the secant line between the points at the ends of the interval.In the above example, g(7) = -21 and g(8) = 43, so the next choice of x for evaluation would be x = 7 +(0 -(-21))/(43-(-21)) = 7 21/64. That function value is ...   g(7 21/64) ≈ -3.59968Now, the interval of interest is (7 21/64, 8) and the x-intercept of the next secant line is computed based on these endpoints and function values.Convergence can be more rapid than with the bisection method, but depends on the function being well-behaved between the ends of the intervals.Newton's MethodAnother iteration method that works well with well-behaved polynomial functions is Newton's method. The iterator here is ...   x' = x - g(x)/g'(x)where x' is the next "guess" and g'(x) is the derivative of the polynomial function g(x). This method converges quadratically, so nearly doubles the number of good decimal places at each iteration.Other Iteration MethodsSometimes, you can create an iterator from the function itself, solving for x:   x = ∛(6x^2 +15x -35) . . . . . using the cubed term   x = (x^3 -6x^2 +35)/15 . . . . using the linear termThese tend to converge slowly, if at all. The closer you are to start with, the better the results will be.