The Quadratic Formula song: (my grade saver)
To the tune of the jack in the box song
X equals negative B
plus or minus square root
of
B squared minus 4AC
all over 2A
:)
Chat with our AI personalities
The equation of a quadratic relationship between two variables x and y is given by
y = Ax² +Bx+X
i find that easier than Ax²+Bx+C
There are two degrees to a quadratic equation, as the x2 term is present.
General form of a quadratic equation: Ax2+Bx+C
Because solutions of quadratic equation depend solely on these three constants.
Law of motion is quadratic equation and is use in calculate of object trajectory. Fluid dynamic for sizing of pump is also second order equation. Quadratic equation or higher may use to fit equation for fast calculation of result. Example on vapour density equation for the use of evaporative mass transfer. We do need to know how much water air can take. It could use the data from table but the work will be lengthly. We can make data in the table a form of polynomial equation and so put it into program for calculated out this require vapour density.
any grocery store will take herbal essences coupons if their either from their store or from the manufacturer. other then that the coupons acceptence all depends on the store it is designated for.
You don't need a flow chart for that; just use the quadratic formula directly; most programming languages have a square root function or method. You would only need to do this in many small steps if you use Assembly programming. The formulae would be something like this: x1 = (-b + sqrt(b^2 - 4*a*c)) / (2 * a) and x2 = (-b - sqrt(b^2 - 4*a*c)) / (2 * a) where a, b, and c are the coefficients of the quadratic equation in standard form, and x1 and x2 are the solutions you want.
READ values of a, b and c,if a is zero then stop as we do not have a quadratic,calculate value of discriminantif D is zero then there is one root: ,if D is > 0 then there are two real roots: and ,if D is < 0 there are two complex roots: and ,PRINT solution.