I'm doing a practical experiement and have measured the voltage over a capacitor on an oscilloscope as the capacitor decays. I have a table of results showing the voltage and time, and created an exponential fit and a plot, using
withStatistics
entering the x,y co ordinates
ExponentialFit(X, Y, v)
This calculates $Ae^x$ but I would like to get the first four coefficients of the power series for my measured value of $e^x$.
Any help on how to do this would be much appreciated!
So, if I understand, you've found a numeric value for
Athat makesA*exp(x)fit the data.If so, then is there a problem with substituting the parameter value into the power series for
A*exp(x)?Or, if you already have an expression with the numeric value,
Of course, for this example that is just
Amultiplied by the series forexp(x).