What is C in the quadratic formula?
C-value – also called the y-intercept of the parabola, this is where the x-value is zero, and graphically, this is where the graph intersects the y-axis.
What is the formula for a discriminant?
The discriminant is the part of the quadratic formula underneath the square root symbol: b²-4ac. The discriminant tells us whether there are two solutions, one solution, or no solutions.
What is discriminant in C programming?
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.
How do you find C?
Whenever you are trying to find the missing C-value, always remember the following formula: (b/2)^2. This formula will allow to find the missing C-value in your standard form equation.
What is the discriminant of quadratic equation ax2 bx c 0?
b2 − 4ac
In the case of a quadratic equation ax2 + bx + c = 0, the discriminant is b2 − 4ac; for a cubic equation x3 + ax2 + bx + c = 0, the discriminant is a2b2 + 18abc − 4b3 − 4a3c − 27c2.
What is the discriminant of the quadratic equation 3 4x 6×2 68 56 76 88?
Therefore, the discriminant of the quadratic equation 3 – 4x = -6×2 is – 56.
What is a discriminant in math?
discriminant, in mathematics, a parameter of an object or system calculated as an aid to its classification or solution. In the case of a quadratic equation ax2 + bx + c = 0, the discriminant is b2 − 4ac; for a cubic equation x3 + ax2 + bx + c = 0, the discriminant is a2b2 + 18abc − 4b3 − 4a3c − 27c2.
How do you write equations in c?
Line 1 : Suppose the quadratic equation to solve is ax2+bx+c=0. Line 2 : Divide both sides of the equation with ‘a’. Line 3 : Multiply numerator and denominator of ‘x’ coefficient with 2. Line 4 : Use the algebraic identity a2+2ab=(a+b)2-b2.
How do you write factorial in c?
Factorial Program using loop
- #include
- int main()
- {
- int i,fact=1,number;
- printf(“Enter a number: “);
- scanf(“%d”,&number);
- for(i=1;i<=number;i++){
- fact=fact*i;
What is C in equation of line?
The equation y = mx + c is the general equation of any straight line where m is the gradient of the line (how steep the line is) and c is the y -intercept (the point in which the line crosses the y -axis).
How do you find C in a linear equation?
This line cuts the y-axis at y = −1. The general equation of a straight line is y = mx + c, where m is the gradient, and y = c is the value where the line cuts the y-axis. This number c is called the intercept on the y-axis. The equation of a straight line with gradient m and intercept c on the y-axis is y = mx + c.
Which of the following is the discriminant of the quadratic equation ax 2 − bx c 0 where a/b/c are real numbers and a ≠ 0?
The discriminant of the quadratic equation ax2+bx+c=0 is Δ=b2−4ac.
What is discriminant of the quadratic equation 3 4x =- 6x 2?
– 56
Solution: The given quadratic equation is 3 – 4x = -6×2. The standard quadratic equation is the form ax2 + bx + c= 0. Therefore, the discriminant of the quadratic equation 3 – 4x = -6×2 is – 56.