I have a few equations that are rather long. They are 0 if the long part would become negative. Let's say they look something like $$ x =\begin{cases} a+b-cd &\quad \text{if}\ \ a+b-cd > 0\\0 &\quad \text{otherwise}.\end{cases} $$ Now I would prefer not to write the whole long part again. Is there a simple way of writing this? I was looking for something like $$ x =\begin{cases} a+b-cd &\quad \text{if}\ \ x>0\\0 &\quad \text{otherwise}.\end{cases}$$ In my case there is no way of simplifying the expression $a+b-cd$. Thanks for your help.
2026-03-30 05:29:01.1774848541
Simple way of denoting a condition on a long equation
95 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
Superscript $\cdot^+$ is the way to go $$ x = (a + b - cd)^+ := \max(0, a + b - cd). $$