0
\[  
\begin{aligned}
 \left{x= [1,0]^{T}t \right) \Rightarrow x^{T}Ax = \alpha > 0,t \\ 
 x= [1,0]^{T} \Rightarrow x^{T}Ax = \gamma > 0),\\
 x = [1,1]^{T} \Rightarrow x^{T}Ax = \alpha  + 2\beta + \gamma  > 0,\\
 x = [1,-1]^{T}  \Rightarrow x^{T}Ax = \alpha - 2\beta + \gamma  > 0.
 \end{aligned} 
 \right\]   

i want to use left and right in my code and i he dont accept with textstudio

1 Answers1

6

Like this?

enter image description here

\documentclass{article}
\usepackage{mathtools}    % <--- for advanced math

\begin{document}
    \[\setlength\arraycolsep{1pt}
\begin{Bmatrix*}[l]      % defined in "mathtools"
x & = [1,0]^{T}t  \Rightarrow x^{T}Ax = \alpha > 0,t \\
x & = [1,0]^{T}   \Rightarrow x^{T}Ax = \gamma > 0),\\
x & = [1,1]^{T}   \Rightarrow x^{T}Ax = \alpha  + 2\beta + \gamma  > 0,\\
x & = [1,-1]^{T}  \Rightarrow x^{T}Ax = \alpha - 2\beta + \gamma  > 0.
 \end{Bmatrix*}
    \]
\end{document}

The package mathtools (which also load amsmath package) improved amsmath with some new features as is {...matrix*}[<align>] where you can determine how the matrix cells are aligned (in your case at left). Letter in place of ... define type of matrix delimiters. For details see some introductory text about typesetting math in LaTeX (for example wiki: advanced math).

Note: Please, always in question provide MWE (Minimal Working Example) complete small document, which we can test as it is. It is not fun to write such document from scratch knowing, that it already exist at you ...

Addedendum: You may like the following layout of your system of equations:

enter image description here

\documentclass{article}
\usepackage{mathtools}    % <--- for advanced math

\begin{document}
    \[\setlength\arraycolsep{1pt}
\begin{Bmatrix*}[l]      % defined in "mathtools"
x & = [1,0]^{T}t  & \Rightarrow x^{T}Ax = \alpha > 0,t \\
x & = [1,0]^{T}   & \Rightarrow x^{T}Ax = \gamma > 0),\\
x & = [1,1]^{T}   & \Rightarrow x^{T}Ax = \alpha  + 2\beta + \gamma  > 0,\\
x & = [1,-1]^{T}  & \Rightarrow x^{T}Ax = \alpha - 2\beta + \gamma  > 0.
 \end{Bmatrix*}
    \]
\end{document}

Of course, the similar result you can obtain for example with

\[\setlength\arraycolsep{1pt}
\left\{\begin{array}{ll}
x & = [1,0]^{T}t  \Rightarrow x^{T}Ax = \alpha > 0,t \\
x & = [1,0]^{T}   \Rightarrow x^{T}Ax = \gamma > 0),\\
x & = [1,1]^{T}   \Rightarrow x^{T}Ax = \alpha  + 2\beta + \gamma  > 0,\\
x & = [1,-1]^{T}  \Rightarrow x^{T}Ax = \alpha - 2\beta + \gamma  > 0.
     \end{array}\right\}
\]

or

\[
\left\{\begin{aligned}
x & = [1,0]^{T}t  \Rightarrow x^{T}Ax = \alpha > 0,t \\
x & = [1,0]^{T}   \Rightarrow x^{T}Ax = \gamma > 0),\\
x & = [1,1]^{T}   \Rightarrow x^{T}Ax = \alpha  + 2\beta + \gamma  > 0,\\
x & = [1,-1]^{T}  \Rightarrow x^{T}Ax = \alpha - 2\beta + \gamma  > 0.
     \end{aligned}\right\}
\]

etc

Zarko
  • 296,517