fouriercos - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


inttrans

  

fouriercos

  

Fourier Cosine transform

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

fouriercos(expr, t, s)

Parameters

expr

-

expression, equation, or set of expressions and/or equations to be transformed

t

-

variable expr is transformed with respect to t

s

-

parameter of transform

opt

-

option to run this under (optional)

Description

• 

The fouriercos function computes the Fourier Cosine transform (F(s)) of expr (f(t)), a linear transformation from C0,C0, defined by:

Fs=20ftcosstⅆtπ

• 

The function Fs returned is defined on the positive real axis only.

• 

Expressions involving exponentials, rational polynomials, trigonometrics (sin, cos) with linear arguments, and a variety of other functions can be transformed.

• 

The Fourier Cosine transform is self-inverting.

• 

The fouriercos function recognizes derivatives (diff or Diff) of functions of rapid descent and can be used to solve ODEs and PDEs.

• 

The fouriercos function attempts to simplify an expression according to a set of heuristics and then match the result with a table of patterns. Entries can be added to this table by addtable(fouriercos, f(t), F(s), t, s), where F(s) is the transform of f(t), which may have an arbitrary number of parameters.

• 

If the option opt is set to 'NO_INT', then the program will not resort to integration of the original problem if all other methods fail.  This will increase the speed at which the transform will run.

• 

fouriercos  recognizes the Dirac-delta (or unit-impulse) function as Dirac(t) and Heaviside's unit step function as Heaviside(t).

• 

The command with(inttrans,fouriercos) allows the use of the abbreviated form of this command.

Examples

withinttrans:

fouriercos3t+a,t,w

32sinawSsiawcosawCiawπ

(1)

fouriercos1t2+1,t,s

2πⅇs2

(2)

fouriercos,s,x

1x2+1

(3)

fouriercosdifffx,x,x,w

w`?`π+2f0π

(4)

fouriercosft,t,u

ℱ__cft,t,u

(5)

fouriercos,u,s

fs

(6)

Fintgxcosxs,x=0..:

fouriercosF+1sqrts,s,t

2πgt2+1t

(7)

fouriercostexp3tsint,t,w

623w4+16w2100πw22w+102w2+2w+102

(8)

dediffyt,`$`t,2yt=cos2t:

fouriercosde,t,s

s2`?`π+2Dy0π`?`=2πDiracs22

(9)

solve,fouriercosyt,t,s

2πDiracs2+2Dy02πs2+1

(10)

fouriercos,s,t

cos2t5Dy0ⅇt

(11)

subsyt=,de

ⅆ2ⅆt2cos2t5Dy0ⅇt+cos2t5+Dy0ⅇt=cos2t

(12)

simplify

cos2t=cos2t

(13)

fouriercosBesselJ0,4t,t,s3

2Heavisides+7πs32+16

(14)

Add an entry to the table

addtablefouriercos,ht,Hs,t,s:

fouriercosht,t,s

Hs

(15)

See Also

dsolve

inttrans

inttrans[addtable]