I am new in the latex. I am trying to write an equation in the latex. I have searched a lot of question regarding equations and tried all possible solutions but I m not getting what I want. I also used different tools but still not getting my equation. Kindly help me.
Asked
Active
Viewed 755 times
0
1 Answers
2
I agree with phollox that logically this does not make too much sense, nor do I now if SVP is a product of 3 variables or some expression. Nevertheless, the following my give you a start.
\documentclass[fleqn]{article}
\usepackage{mathtools}
\usepackage{siunitx}
\begin{document}
\[
AD=\begin{dcases}
1 & \text{if}~\left(\left(\frac{AC}{4G}+\frac{\text{Noise}}{\si{400\decibel}}\right)\right)
\ge\text{Accident
threshold}\wedge\left(\text{Speed}\ge\si{24\kilo\meter\per\hour}\right)
\\
1 & \text{if}~\left(\left(\frac{AC}{4G}+\frac{\text{Noise}}{\si{400\decibel}}
+\frac{SVP}{2.06}\right)\right)
\ge\text{Low speed threshold}\\
1 & \text{if}~\left(\left(\frac{AC}{4G}+\frac{\text{Noise}}{\si{400\decibel}}
\right)\right)
\ge\text{Accident threshold}\\
0 &\text{otherwise}
\end{dcases}
\]
\end{document}


casesenvironment. See this example. – Alan Sep 20 '18 at 18:09