Final answer:
To find the zeros of the function using Newton's root finding method, we need to apply the formula: x = x0 - f(x0)/f'(x0). For each starting point, calculate f(x0) and f'(x0), and use the formula to iteratively find the zeros of the function.
Step-by-step explanation:
To find the zeros of the function using Newton's root finding method, we need to apply the formula: x = x0 - f(x0)/f'(x0)
- For the first starting point, x0 = -1, we have f(-1) = sin(-1) + (-1)²cos(-1) - (-1)² - (-1) = -0.1586
- For the second starting point, x0 = 0, we have f(0) = sin(0) + (0)²cos(0) - (0)² - (0) = 0
- Next, we need to calculate the derivative of the function f'(x) = cos(x) + 2xcos(x) - 2x - 1
- Using the formula x = x0 - f(x0)/f'(x0), we can iteratively find the zeros of the function for both starting points.