Tagged Questions

5
votes
6answers
3k views

Solve Quadratic Equation in C++

I am trying to write a function in C++ that solves for X using the quadratic equation. This is what I have written initially, which seems to work as long as there are no complex numbers for an answer: ...
3
votes
1answer
156 views

Simple Multiplication and Arithmetic in C

Hi I have an assignment to compute the roots of quadratic equations in C, should be pretty simple and I know what I need to do with the program but I am having a problem nonetheless. It works fine ...
3
votes
1answer
319 views

Draw a quadratic bezier curve through three given points

I have three points in 2D and I want to draw a quadratic bezier curve passing through them. How do I calculate the middle control point (x1 and y1 as in quadTo)? I know linear algebra from college but ...
3
votes
3answers
914 views

Haskell and Quadratics

I have to write a program to solve quadratics, returning a complex number result. I've gotten so far, with defining a complex number, declaring it to be part of num, so +,- and * - ing can take ...
2
votes
1answer
213 views

Is there a quadratic programming library in C++?

The only Google search result I found is QuadProg++ but it can not solve the quadratic programming problem whose matrix is not applicable for Cholesky decomposition. So can anyone give me some ...
1
vote
2answers
99 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
2answers
360 views

Factor a quadratic polynomial in Python

THIS IS NOT FOR HOMEWORK Since factoring a quadratic equation in my head just happens, and has done that since I learned it - how would I go about starting to write a quadratic factorer in Python?
1
vote
4answers
189 views

python - returns incorrect positive #

what i'm trying to do is write a quadratic equation solver but when the solution should be -1, as in quadratic(2, 4, 2) it returns 1 what am i doing wrong? #!/usr/bin/python import math def ...
1
vote
1answer
244 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 ...
0
votes
1answer
48 views

Aproximate n grade Bezier through cubic and/or quadratic Bezier curves

I'm trying to draw a 6 grade (start point, 4 control points, end point) Bezier curve but the API offers me only cubic and quadratic curves methods. Is there a way to split or aproximate the 6 (or n) ...
0
votes
1answer
160 views

Imaginary numbers

I have a method that takes 3 doubles and calculates the roots via the Quadratic Formula: public static double[] quadraticFormula(double a, double b, double c) throws ArithmeticException { double ...
0
votes
1answer
620 views

Quadratic Bezier Curve: Calculate Point

Hey, I'd like to calculate a point on a quadratic curve. To use it with the canvas element of html5. When I use the quadraticCurveTo() Function in JavaScript, I have a source point, a target point ...