Tagged Questions

3
votes
3answers
811 views

Convert a quadratic curve points to polynomial representation?

I have the X,Y of 2 end points and 1 bezier point, of a Quadratic Bezier curve. Using this data, how can I derive the polynomial representation of the curve?
2
votes
2answers
305 views

C# application solving for quadratic imaginary roots

I have constructed an extremely simple, yet fully-functioning and quite helpful, WinForms C# application that solves for the real roots of a quadratic equation. Here is my current programming logic: ...
1
vote
2answers
93 views

How do I use letter as a variable/placeholder in a math equation? [closed]

Sorry if that title confused you its kinda hard for me to ask this without explaining it. I am writing a (fairly) simple program to find the roots of a quartic (biquadratic) function. My main question ...
1
vote
1answer
225 views

Does this method work for solving the quadratic equation using JavaScript?

I'm trying to do some "complex" math where I need to call upon some of JavaScript's Math properties to solve the quadratic equation. Does the following method work? root = Math.pow(inputb,2) - 4 ...