I want to type an equation as attached in the image, but not sure which equation environment can achieve the exact outcome,
split
, align
, {eqnarray}
, {array}
?Anyone knows? Thanks in advance.

split
, align
, {eqnarray}
, {array}
?NEW: TikZ book now 40% off at Amazon.com for a short time.
align
environment if both equations should be numbered, align*
if there should not be a number, split
within an {equation}
environment if both lines should get one number together.cases
.Code: Select all
\documentclass{article}\usepackage{amsmath}\begin{document}\begin{align}A &= B\\&=\begin{cases}C, & \text{D},\\\text{E}, & \text{F}.\end{cases}\end{align}\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.