Math, asked by Anonymous, 6 months ago

What is Horner process? Explain? Explain the example attached

Attachments:

Answers

Answered by itzcutiepie4
1

Answer:

Horner’s Method for Polynomial Evaluation

Given a polynomial of the form cnxn + cn-1xn-1 + cn-2xn-2 + … + c1x + c0 and a value of x, find the value of polynomial for a given value of x. Here cn, cn-1, .. are integers (may be negative) and n is a positive integer.

Input is in the form of an array say poly[] where poly[0] represents coefficient for xn and poly[1] represents coefficient for xn-1 and so on.

Examples:

// Evaluate value of 2x3 - 6x2 + 2x - 1 for x = 3

Input: poly[] = {2, -6, 2, -1}, x = 3

Output: 5

// Evaluate value of 2x3 + 3x + 1 for x = 2

Input: poly[] = {2, 0, 3, 1}, x = 2

Output: 23...

please mark as brainliest....

Similar questions