0

Can you show me how to work out as in picture? Thank you!

enter image description here

1 Answers1

3

Use aligned from the amsmath package. You seem to struggle with the very basics of LaTeX. Therefore please also see these two questions:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
  \begin{aligned}
    -\Delta u &= \mu p(x,u), && x \in \Omega \\
    u &= 0, && x \in \partial\Omega,
  \end{aligned}
\end{equation}
\end{document}

enter image description here

Henri Menke
  • 109,596