I am very new to LaTeX. I want to display this:
How should I go about doing this?
Might be a little hard to get right for a beginner, here is some of it:
\documentclass[a4paper]{memoir}
\usepackage{amsmath}
\begin{document}
\begin{equation*}
\max
\begin{cases}
\! % artifact from aligned(at)
\begin{alignedat}{2}
&\text{apandon:} &\quad & 0;
\\
&\text{continue:} && \frac{A}{B} ;
\\
&\text{improve:} && A + B
\\
&&& +C;
\end{alignedat}
\end{cases}
\end{equation*}
\end{document}
One more alternative (based on use of mathtools):
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\[
V_i(t) = \max\begin{dcases}
\mathrm{apandon:} & 0; \\
\mathrm{continue:} & \frac{A}{B} ; \\
\mathrm{improve:} & \begin{multlined}[t] A + B\\ +C+D+E+F\end{multlined}
\end{dcases}
\]
\end{document}
Like this:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}V_i(t) = \max \left\{
\begin{array}{@{}rl@{}}
\text{abandon:} & 0;\\
\text{continue:}&-c(t)+\frac{\sum_{j=1}^N[pV_{i+j/2}(t+2)+(1-p)V_{i-j/2}(t+1)]}{N(1+r)}; \\[1ex]
\text{improve:} &-c(t)-\alpha(t) \\
&\hfill{}+\frac{\sum_{j=1}^N[pV_{i+1+j/2}(t+2)+(1-p)V_{i+1-j/2}(t+1)]}{N(1+r)}.
\end{array}
\right .
\end{equation}
\end{document}
casesenvironment from the amsmath package? – Tom Bombadil Dec 14 '15 at 13:05casesenvironment. I will do that and add my code here. – Karup Dec 14 '15 at 13:08\left\{ <content> \right.as shown for instance here – Tom Bombadil Dec 14 '15 at 13:12