Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
5answers
563 views

Picking good first estimates for Goldschmidt division

I'm calculating fixedpoint reciprocals in Q22.10 with Goldschmidt division for use in my software rasterizer on ARM. This is done by just setting the numerator to 1, i.e the numerator becomes the ...
3
votes
1answer
314 views

Multivariate Taylor series expansion in Mathematica

Mathematica seems to be missing a function for this, or I can't find it anyway. The Series function can do expansion in succession for multiple variables, but it doesn't seem capable of doing a full ...
2
votes
2answers
481 views

EXP to Taylor series

I'am trying to expand exp(x) function to Taylor series. Here is code: double CalcExp(){ double eps = 0.0000000000000000001; double elem = 1.0; double sum = 0.0; int i = 1; sum = 0.0; do { sum += ...
2
votes
2answers
241 views

Generating and then using a taylor polynomial in C#

I've written a simple graphing implementation in C#, and I can graph things by comparing each pixel to the position on the graph it represents and plugging that position into the function I have to ...
1
vote
1answer
47 views

Scheme streams with Taylor series

I've been doing some homework, wrote some code and can't actually find the reason why it doesn't work. The main idea of this part of the work is to make a stream that will give me elements of Taylor ...
1
vote
2answers
195 views

Taylor Series in C

I'm trying to make a program to calculate the cos(x) function using taylor series so far I've got this: int factorial(int a){ if(a < 0) return 0; else if(a==0 || a==1) return 1; else ...
1
vote
2answers
96 views

Converting string to illegal/unsupported expression in Mathematica.

I need to input a variable, say var, into Mathematica function Series[ ] like this: Series[A^2+B^2+C^2, var]. Series[ ] has the following syntax: Series[f, {x, x_0, n}] generates a power series ...
1
vote
2answers
243 views

Function approximation with Maclaurin series

I need to approx (1-x)^0.25 with given accuracy (0.0001 e.g.). I'm using expansion found on Wikipedia for (1+x)^0.25. I need to stop approximating when current expression is less than the accuracy. ...
1
vote
2answers
563 views

Any (free) tools to compute Taylor series expansion of a function?

After painful trial and error, I arrived at a grotesque function that behaves the way I want it to: (exp(- abs(6 * (x - 0.7)) ^ 2.5 ) + exp(- (x-1.7) ^ 8 ) * 1.2)/1.5785 I only care about the ...
0
votes
2answers
540 views

Taylor series implementation in assembly language using 68hc11

How to implement Taylor series to calculate sine value in assembly using 68hc11. As 68hc11 does not support floating point, display value will be in integer..(e.g. multiply by 100 to make integer ...
0
votes
3answers
485 views

Using Taylor Polynomials Programmatically in Maple

I am trying to use a Taylor polynomial programmatically in Maple, but the following does not seem to work... T[6]:=taylor(sin(x),x=Pi/4,6);convert(T[6], polynom, x); f:=proc(x) convert(T[6], ...
0
votes
6answers
1k views

Using Taylor Series to Avoid Loss of Precision

I'm trying to use Taylor series to develop a numerically sound algorithm for solving a function. I've been at it for quite a while, but haven't had any luck yet. I'm not sure what I'm doing wrong. ...
-5
votes
3answers
267 views

taylor approximation using mathematica

Given the Taylor expansion for Exp[x/3] write y[x]= Summation( n>=0 ) ( (a subscript n) * x^n ) . Solve for the coefficients (a subscript n) up to order 10.