Help Solving Non-Linear System

es
Messages
70
Reaction score
0
Hello All,

I was hoping one of the many knowledgeable people on this forum could give me some helpfull advice on how to proceed with the following problem. Basically, I am trying to fit experimental data to a curve.

In general my curve looks like this and I know the constants have the following constraints. I also know the range and domain of the function over the area I am interested in.

f(x)=a*(x^2)+b*x+c,
0<=f(x)<5, 0<x<50, -1<a<0, 0<b<1

I have never seen a negative c and I think the following should hold, |a|<|b|, but I would rather not rely on either if possible.

Oh ya, this is probably obvious but just in case, x is the variable I can control well and f(x) is the measured value. Also, I can vary x over the entire domain given and take many measurements. a, b, and c are constant for one particular setup but will change when I physically change the setup (i.e. switch to new components).

Anyway, this system is linear and quite easy to deal with. Unfortunately this is a sort of a reduced setup. I'll call it Experiment 1. What I really want is Experiment 2 which changes my characteristic equation to:

f(x)=a*(x+p)^2+b*(x+p)+c

Unfortunately I cannot control p or measure it directly (actually if I change to an experiment 3 I can, but there are good engineering reasons to try to avoid doing so. It is also a lot of work and this experiment needs to be repeated many times for different setups so time spent here could result in significant time savings overall) Anyway, I do know its possible range, 0<p<2.

The other constraints still apply. Oh ya, p will be constant throughout
the setup as well.

I believe this system is non-linear (because two unknowns are multiplied together) and I know there are iterative methods to solve such a system but I know very little about them.

I am sure this is a solved problem. Does someone know the name of the solution or technique to solve it? I did do a little googling before writing this post and found some info on root finding. Is this a good technique to try? Perhaps there is some nifty variable substitution I am not seeing that could reduce this to a linear case?
 
Mathematics news on Phys.org
Are you looking to fit a set of data points, say {(x1,y1),(x2,y2),...,(xn,yn)}, to the parabola y=ax^2+bx+c ? If so, then use the method of least squares.
 
Unfortunately no.
I am trying to fit a set of data points, say {(x1,y1),(x2,y2),...,(xn,yn)}, to the parabola defined by y=a(x+p)^2+b(x+p)+c. Which is non-linear because p is also unknown (unless someone can figure out how to reduce it!) so the method of least squares does not apply.

I have been doing some research into this problem and because I can accurately place x, I think I can also accuratly estimate the derivative. I think I can combine this with the Newton-Raphson method to solve for the unknowns.

Unfortunately I am new to all this so I am pretty scared of hidden gotchas so I am not sure how much I can trust any answer I get. I suppose it would be enough to run the test on the lot and then spot check a couple randomly tested units with the more advanced setup (aka experiment 3 above).
 
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Fermat's Last Theorem has long been one of the most famous mathematical problems, and is now one of the most famous theorems. It simply states that the equation $$ a^n+b^n=c^n $$ has no solutions with positive integers if ##n>2.## It was named after Pierre de Fermat (1607-1665). The problem itself stems from the book Arithmetica by Diophantus of Alexandria. It gained popularity because Fermat noted in his copy "Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos, et...
I'm interested to know whether the equation $$1 = 2 - \frac{1}{2 - \frac{1}{2 - \cdots}}$$ is true or not. It can be shown easily that if the continued fraction converges, it cannot converge to anything else than 1. It seems that if the continued fraction converges, the convergence is very slow. The apparent slowness of the convergence makes it difficult to estimate the presence of true convergence numerically. At the moment I don't know whether this converges or not.
Back
Top