Simple way of denoting a condition on a long equation

95 Views Asked by At

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.

1

There are 1 best solutions below

1
On BEST ANSWER

Superscript $\cdot^+$ is the way to go $$ x = (a + b - cd)^+ := \max(0, a + b - cd). $$