Loading [MathJax]/jax/output/HTML-CSS/jax.js

Sorry, this content is no longer available

Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

asked 4 years ago

dantetante gravatar image

limit of fourier series

I'd like to compute the limit of

\sum_{k=1}^{n}\frac{1}{k^2+1}*\sin(kx)

I did the following already:

def b(k):
        return(1/(k**2+1))
def a(k,x):
        return(b(k)*sin(k*x))
def s(n,x):
        s=0 
        for k in range(1,n+1):
                s=s+a(k,x)
        return(s)
var('x,n')
f=s(1000,x)
plot(f,0,2*pi)

I already tried computing it by hand, looked in Bronstein, searched the internet, but didn't find any solution. But I'm no specialist in Analysis, so perhaps somebody can help? Clearly the series converges for every x in [0,2*pi] ...

limit of fourier series

I'd like to compute the limit of

\sum_{k=1}^{n}\frac{1}{k^2+1}*\sin(kx)

I did the following already:

def b(k):
        return(1/(k**2+1))
def a(k,x):
        return(b(k)*sin(k*x))
def s(n,x):
        s=0 
        for k in range(1,n+1):
                s=s+a(k,x)
        return(s)
var('x,n')
f=s(1000,x)
plot(f,0,2*pi)

I already tried computing it by hand, looked in Bronstein, searched the internet, but didn't find any solution. But I'm no specialist in Analysis, so perhaps somebody can help? Clearly the series converges for every x in [0,2*pi] ...

limit of fourier series

I'd like to compute the limit of

\sum_{k=1}^{n}\frac{1}{k^2+1}*\sin(kx)

I did the following already:

def b(k):
        return(1/(k**2+1))
def a(k,x):
        return(b(k)*sin(k*x))
def s(n,x):
        s=0 
        for k in range(1,n+1):
                s=s+a(k,x)
        return(s)
var('x,n')
f=s(1000,x)
plot(f,0,2*pi)

I already tried computing it by hand, looked in Bronstein, searched the internet, but didn't find any solution. But I'm no specialist in Analysis, so perhaps somebody can help? Clearly the series converges for every x in [0,2*pi] ...

click to hide/show revision 4
None

updated 4 years ago

Juanjo gravatar image

limit of fourier series

I'd like to compute the limit of

\sum_{k=1}^{n}\frac{1}{k^2+1}*\sin(kx)

of nk=11k2+1sin(kx) I did the following already:

def b(k):
        return(1/(k**2+1))
def a(k,x):
        return(b(k)*sin(k*x))
def s(n,x):
        s=0 
        for k in range(1,n+1):
                s=s+a(k,x)
        return(s)
var('x,n')
f=s(1000,x)
plot(f,0,2*pi)

I already tried computing it by hand, looked in Bronstein, searched the internet, but didn't find any solution. But I'm no specialist in Analysis, so perhaps somebody can help? Clearly the series converges for every x in [0,2*pi] ...