The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
80 views

Mathematica - Solving for the input of a taylor series such that coefficients are minimized

I need to find the value of a variable s such that the taylor expansion of an expression involving s: Has a minimum (preferably zero, but due to binary minimum is sufficient) in as many coefficients ...
1
vote
3answers
442 views

Taylor series for arcsin(x), incorrect output C language

I wrote a program that gets from the user a value x and an integer n, the program then prints arcsin(x) using the taylor serie for arcsin http://tedmuller.us/Math/img/Taylor-arcsin.gif but for some ...
0
votes
1answer
63 views

Bad output taylor series sinx

i'm trying to write a program that gets from the user a value x and prints sinx using taylor series. but my output is bad. the output i get is not even a number, its -1.#IND00 regardless of what i ...
0
votes
1answer
116 views

Matlab - display Taylor polynoms

I have one very simple question. We are given a function f: R -> R^2 that looks like this: f(x) = [cos(x) ; sin(2*x)] We must display the function together with first and second Taylor polynom in one ...
2
votes
2answers
180 views

In what situation would a taylor series for a polynomial be necessary?

I'm having a hard time understanding why it would be useful to use the Taylor series for a function in order to gain an approximation of a function, instead of just using the function itself when ...
1
vote
4answers
955 views

Java: sin/cos/tan/ln/other precision (for double)?

Those functions usually give the irrational number for a result, and are probably calculated via taylor series but is there any documentation of how many times are those series repeated? I'm thinking ...
1
vote
3answers
217 views

Is the floating point implementation of exp() function equivalent to a truncated Taylor series expansion?

Is the floating point implementation of exp() function in cmath equivalent to a truncated Taylor series expansion of a very high order? One possible source of the error we should keep in mind is the ...
-1
votes
2answers
999 views

Taylor Series Expansion for exp(x)/sin(x) in Fortran

I tried to write a Taylor series expansion for exp(x)/sin(x) using fortran, but when I tested my implementatin for small numbers(N=3 and X=1.0) and add them manually, the results are not matching what ...
1
vote
1answer
244 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 ...
4
votes
1answer
2k 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 ...
1
vote
2answers
1k 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
190 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 ...
-4
votes
3answers
593 views

taylor approximation using mathematica [closed]

For a homework assignment: 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.
2
votes
2answers
1k 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 += ...
1
vote
2answers
545 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. ...
2
votes
2answers
490 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 ...
14
votes
5answers
893 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 ...
1
vote
2answers
737 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
842 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
598 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], ...
1
vote
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. ...