Edite o ambiente de alinhamento corretamente

Edite o ambiente de alinhamento corretamente
\documentclass[10pt,a4paper]{article}
    \usepackage[utf8]{inputenc}
    \usepackage{amsmath}
    \usepackage{amsfonts}
    \usepackage{amssymb}
    \usepackage{pgfplots}
    \begin{document}
    \textit{Induc.:} 
    \begin{align*}
    \hspace{2cm}\Gamma (n+1)&=n\Gamma (n) && (B)\\
    &=n\cdot (n-1)! && (\textit{AA})
    \end{align*}
    \end{document}

Você tem alguma ideia de como posso ter o ambiente Start do Align logo atrás do "Induc." então, 2 linhas acima?

Editar problema:

\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{pgfplots}
\begin{document}
\begin{proof}
\textit{Induktionsanfang:} $\Gamma (1)=\int_0^\infty e^{-t}dt=1=0!$\\
\hspace{1cm}\\
\textit{Induktionsschritt:} \qquad
$\begin{aligned}[t]
\hspace{-0.7cm}\Gamma (n+1)&=n\Gamma (n) \hspace{1.6cm} (2.85)\\
&=n\cdot (n-1)! \qquad (\textit{Induktionsvoraussetzung})\\
&=n!
\end{aligned}$
\end{proof}
\end{document}

Responder1

Você pode usar aligneddentro de um modo matemático em linha $ .. $.

\documentclass[10pt,a4paper]{article}
    \usepackage[utf8]{inputenc}
    \usepackage{amsmath}
    \usepackage{amsfonts}
    \usepackage{amssymb}
    \usepackage{pgfplots}
    \begin{document}
    \textit{Induc.:} \qquad 
    $
    \begin{aligned}[t]
    \Gamma (n+1)&=n\Gamma (n) && (B)\\
    &=n\cdot (n-1)! && (\textit{AA})
    \end{aligned}
    $
    \end{document}

insira a descrição da imagem aqui

Responder2

Talvez você queira ter o alinhamento centralizado na parte restante da linha. Proponho duas variantes com o linegoalpacote:

\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{linegoal} 
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{pgfplots}
\begin{document}

\textit{Induc.:}$ \hfill
\begin{aligned}[t]
\Gamma (n+1)&=n\Gamma (n) && (B)\\
&=n\cdot (n-1)! && (\textit{AA})
\end{aligned} $\hfill\null \\
Some more text. Some more text. Some more text. Some more text. Some more text. Some more text. Some more text. Some more text.\bigskip

\textit{Induc.:} \makebox[\linegoal]{$
\begin{aligned}[t]
\Gamma (n+1)&=n\Gamma (n) && (B)\\
&=n\cdot (n-1)! && (\textit{AA})
\end{aligned} $} 
Some more text. Some more text. 

\end{document} 

insira a descrição da imagem aqui

informação relacionada