FourierCoefficient[expr,t,n]
gives the n
coefficient in the Fourier series expansion of expr.
FourierCoefficient[expr,{t1,t2,…},{n1,n2,…}]
gives a multidimensional Fourier coefficient.
FourierCoefficient
FourierCoefficient[expr,t,n]
gives the n
coefficient in the Fourier series expansion of expr.
FourierCoefficient[expr,{t1,t2,…},{n1,n2,…}]
gives a multidimensional Fourier coefficient.
Details and Options
- The

coefficient in the Fourier series expansion of
is by default given by
. - The
-dimensional Fourier coefficient is given by
. - In the form FourierCoefficient[expr,t,n], n can be symbolic or an integer.
- The following options can be given:
-
Assumptions $Assumptions assumptions on parameters FourierParameters {1,1} parameters to define Fourier series GenerateConditions False whether to generate results that involve conditions on parameters - The function expr is assumed to be periodic in t with period
, except when otherwise specified by FourierParameters. - Common settings for FourierParameters include:
-
{1,1} 
f(t) e-i n td tdefault settings {1,-2Pi}
f(t) ei 2π n td tperiod 1 {a,b} 
general setting
Examples
open all close allBasic Examples (2)
Find the 5
Fourier coefficient:
FourierCoefficient[t ^ 2 + t, t, 5]Find the coefficient of the general term in a Fourier series:
FourierCoefficient[t ^ 2 + t, t, n]DiscretePlot[Abs[%], {n, -10, 10}, PlotRange -> All]//QuietFind the {3,5} Fourier coefficient:
FourierCoefficient[E ^ (-x - Abs[y]), {x, y}, {3, 5}]Find the coefficient of the general term:
FourierCoefficient[E ^ (-x - Abs[y]), {x, y}, {m, n}]Plot the absolute value of coefficients:
ListPointPlot3D[Abs[Table[%, {m, -5, 5}, {n, -5, 5}]], Filling -> Bottom, PlotRange -> All, DataRange -> {{-5, 5}, {-5, 5}}]Scope (4)
Find the 3
Fourier coefficient for an exponential function:
FourierCoefficient[E ^ (-t), t, 3]General Fourier coefficient for a Gaussian function:
FourierCoefficient[E ^ (-4t ^ 2), t, n]DiscretePlot[%, {n, -15, 15}, Ticks -> {Automatic, None}]General Fourier coefficients for Abs:
FourierCoefficient[Abs[t], t, n]Fourier coefficient for a basis exponential function:
FourierCoefficient[E ^ (3 I t), t, n]Table[%, {n, -4, 4}]Options (2)
Assumptions (1)
FourierParameters (1)
Use a nondefault setting for FourierParameters:
Table[FourierCoefficient[t ^ 3, t, n, FourierParameters -> ps], {ps, {{1, 1}, {1, -2π}}}]Properties & Relations (4)
FourierCoefficient is defined by an integral:
FourierCoefficient[t ^ 2 + t, t, 3]1 / (2π) Integrate[(t ^ 2 + t)E ^ (-3I t), {t, -π, π}]Compute the exponential Fourier series using the individual coefficients:
FourierSeries[t ^ 2 + t, t, 2]Sum[FourierCoefficient[(t ^ 2 + t), t, n] E ^ (I n t), {n, -2, 2}]FourierCoefficient is the same as InverseFourierSequenceTransform:
FourierCoefficient[Abs[t], t, n]InverseFourierSequenceTransform[Abs[t], t, n]Fourier coefficients for basis exponentials:
FourierCoefficient[E ^ (-5 I t), t, n]FourierCoefficient[E ^ (5 I t), t, n]FourierCoefficient[1, t, n]Related Guides
History
Text
Wolfram Research (2008), FourierCoefficient, Wolfram Language function, https://reference.wolfram.com/language/ref/FourierCoefficient.html.
CMS
Wolfram Language. 2008. "FourierCoefficient." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/FourierCoefficient.html.
APA
Wolfram Language. (2008). FourierCoefficient. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/FourierCoefficient.html
BibTeX
@misc{reference.wolfram_2026_fouriercoefficient, author="Wolfram Research", title="{FourierCoefficient}", year="2008", howpublished="\url{https://reference.wolfram.com/language/ref/FourierCoefficient.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_fouriercoefficient, organization={Wolfram Research}, title={FourierCoefficient}, year={2008}, url={https://reference.wolfram.com/language/ref/FourierCoefficient.html}, note=[Accessed: 13-June-2026]}