Update B-syntax.md

This commit is contained in:
Sigilante 2022-11-10 17:26:11 -06:00 committed by GitHub
parent ed9e8d4fac
commit 9a64d844b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -556,13 +556,7 @@ Implement a version of the absolute value function, {% math %}|x|{% /math %}, si
{% math block=true %}
|x|_{10}
=
\begin{cases} x-10, & x > 10 \\\ 0, & 10-x \le 10 \end{cases}
\begin{cases} x-10, & x > 10 \\\ 10-x & 0 \le x \le 10 \end{cases}
{% /math %}
<!--$$
|x|_{10}
=
\begin{cases} x-10, & x > 10 \\ 0, & 10-x \le 10 \end{cases}
$$-->
Test it on a few values like 8, 9, 10, 11, and 12.