I would like to know a way to find an quadratic equation that had 2 given tangents:
For example here is 2 tangents equations:
- y = 1/2 x
- y = 2 x + 2
and 2 abscisses
- x = 0
- x = 3
Is there a simple way to find a quadratic equation that saitisfies those two tangents at respective abscisses?
I'm working in Clojure if it needs to be computer related
Sorry for my bad english
From the little that you provide, I infer that you are looking for a parabola equation of the form
tangent to the two lines at the given abscissas.
The slope is given by
Expressing the equal slope conditions, we have
giving
A = 1/4,B = 1/2.Expressing the equal ordinate conditions, we have
leading to
9/4 + 3/2 = 8!!!There is no solution, as there are too many constraints.