How to write convolution symbol using Latex ? In function analysis, the convolution of f and g f∗g is defined as the integral of the product of the two functions after one is reversed and shifted.

Write default Latex convolution symbol

You can use \ast function:

$$(f \ast g)(t):=\int_{-\infty}^{\infty} f(\tau) g(t-\tau) d \tau$$
(fg)(t):=f(τ)g(tτ)dτ

Latex convolution with circle using amssymb

You can use \circledast symbol from amssymb

\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}

$$(f \circledast g)(t):=\int_{-\infty}^{\infty} f(\tau) g(t-\tau) d \tau$$

\end{document}
(fg)(t):=f(τ)g(tτ)dτ

Examples

Circular convolution:

$$\left(f \ast g_{T}\right)(t) \equiv \int_{t_{0}}^{t_{0}+T} \left[\sum_{k=-\infty}^{\infty} f(\tau+k T)\right] g_{T}(t-\tau) d\tau$$
(fgT)(t)t0t0+T[k=f(τ+kT)]gT(tτ)dτ

Discrete convolution:

$$(f \ast g)[n]=\sum_{m=-\infty}^{\infty} f[m] g[n-m]$$
(fg)[n]=m=f[m]g[nm]