Sorry if this is a really simple question, but I was looking for an equation to produce a non-symmetrical parabola. (The left side of the parabola would have a different 'slope' than the right side of the parabola)
Thanks!
Edit: If I clarify the purpose of this, it may help people understand my problem better. I'm trying to make a physics engine for a game, where the character can jump. The parabola-shape will represent the jump arc - it takes more time to jump up (to the vertex) than it does to fall down (to the x-intercept). Because of this, I'd like the y-intercept and first x-intercept to be at the origin, and move up from there.


If you need something skew, looking roughly like a parabola, you could use higher polynomials: y(x) = $x^4 + 2x^3 + 3x^2$, or with other coefficients.