I have seen a lot of papers on how to find points of intersection between two ellipses for 2D case, but i only need to check if two ellipses are in collision. I don't need to know points of intersection if there are any. Is there simplified algorithm for this. Thanks.
I know center and two radii for every ellipse. Both ellipses can be rotated.


Let we suppose that $E_1$ is an ellipse with equation $f(x,y)=\frac{x^2}{a}+\frac{y^2}{b}-1=0$ and $E_2$ is another ellipse. To check if $E_1$ and $E_2$ intersect, it is sufficient to check if $f(x,y)$ takes only positive values on $\partial E_2$. So we can take a parametrization of $\partial E_2$ and compute the stationary points for the quadratic function $f(x,y)$ on $\partial E_2$. If we values of $f$ in such points are positive, $E_1$ and $E_2$ do not intersect, otherwise they intersect.
Here I assumed that the ellipses lie on the euclidean plane, but the same argument can be extended also to check if two ellipses in $\mathbb{R}^3$ are "linked" or not.