Computer Science, asked by vidya8294328032, 2 months ago

write c program to find roots using Atkins method to find solution of non linear equation​

Answers

Answered by abhisingh76
0

Answer:

In this example, you will learn to find the roots of a quadratic equation in C programming.

To understand this example, you should have the knowledge of the following C programming topics:

C Programming Operators

C if...else Statement

The standard form of a quadratic equation is:

ax2 + bx + c = 0, where

a, b and c are real numbers and

a != 0

The term b2-4ac is known as the discriminant of a quadratic equation. It tells the nature of the roots.

If the discriminant is greater than 0, the roots are real and different.

If the discriminant is equal to 0, the roots are real and equal.

If the discriminant is less than 0, the roots are complex and different.

Similar questions