A bivariate Gaussian distribution is a probability distribution that describes the joint distribution of two continuous random variables. It is also known as a 2D normal distribution, because it is a multivariate normal distribution with two dimensions.
The bivariate Gaussian distribution is characterized by two parameters: the mean vector and the covariance matrix. The mean vector is a two-dimensional vector that specifies the expected values of the two random variables, and the covariance matrix is a 2 \(\times\) 2 matrix that specifies the covariance between the two random variables.
The probability density function (PDF) of a bivariate Gaussian distribution is given by:
\(f_{X,Y}(x,y) = \frac{1}{2\pi\sigma_x\sigma_y\sqrt{1-\rho^2}}\exp\left[-\frac{1}{2(1-\rho^2)}\left(\frac{(x-\mu_x)^2}{\sigma_x^2}-2\rho\frac{(x-\mu_x)(y-\mu_y)}{\sigma_x\sigma_y}+\frac{(y-\mu_y)^2}{\sigma_y^2}\right)\right]\)
where \(\mu_x\) and \(\mu_y\) are the means of \(X\) and \(Y\), \(\sigma_x\) and \(\sigma_y\) are their standard deviations, and \(\rho\) is their correlation coefficient. This is a common bivariate PDF called the normal distribution.
The bivariate Gaussian distribution is widely used in statistics, machine learning, and signal processing, among other fields, to model the joint distribution of two variables that are correlated. It is also a fundamental building block for more complex multivariate Gaussian distributions.