- #1
jonjacson
- 453
- 38
Hello folks.
Normally if you have two variables and you want to know their relationship, you can plot them to get an idea of the equation that might relate them. If you see a straight line you can use the least squares method to find the best equation. You can use this method for polynomials higher than one.
But my question is of different nature.
Assume we know the Drag Force can be represented by a funcion that depends upon the velocity, and we assume that its highest degree is 2. So the force is something like this:
Fd = A + B * v + C * v2
Where A, B and C are constants to be calculated using real data and v is the speed.
My question is, if I am given a real path, How could I calculate the best values for A, B and C?
I don't know how to do it because these parameters are put into a differential equation, Newton second law, to calculate the path and there are more forces in it, like gravity for example. But I don't know to work in reverse order, I don't know how to get the parameters starting from the path. So if I knew A,B and C I can calculate the path, but not the opposite.
I hope you understand what I mean. I guess there must be a mathematical technique for this since I am sure I am not the first one solving these type of problems.
Normally if you have two variables and you want to know their relationship, you can plot them to get an idea of the equation that might relate them. If you see a straight line you can use the least squares method to find the best equation. You can use this method for polynomials higher than one.
But my question is of different nature.
Assume we know the Drag Force can be represented by a funcion that depends upon the velocity, and we assume that its highest degree is 2. So the force is something like this:
Fd = A + B * v + C * v2
Where A, B and C are constants to be calculated using real data and v is the speed.
My question is, if I am given a real path, How could I calculate the best values for A, B and C?
I don't know how to do it because these parameters are put into a differential equation, Newton second law, to calculate the path and there are more forces in it, like gravity for example. But I don't know to work in reverse order, I don't know how to get the parameters starting from the path. So if I knew A,B and C I can calculate the path, but not the opposite.
I hope you understand what I mean. I guess there must be a mathematical technique for this since I am sure I am not the first one solving these type of problems.