I saw numerous problems in Brilliant where the users posted LaTex equations like the following:
\[ \begin{array} { l l l l l } & & A & B & C & D & E & F \\ \times & & & & & & & 4 \\ \hline & & F & E & D & C & B & A \\ \end{array} \]
Can anyone tell me how to make my own equation in this form?
I will be grateful!
Easy Math Editor
This discussion board is a place to discuss our Daily Challenges and the math and science related to those challenges. Explanations are more than just a solution — they should explain the steps and thinking strategies that you used to obtain the solution. Comments should further the discussion of math and science.
When posting on Brilliant:
*italics*
or_italics_
**bold**
or__bold__
paragraph 1
paragraph 2
[example link](https://brilliant.org)
> This is a quote
\(
...\)
or\[
...\]
to ensure proper formatting.2 \times 3
2^{34}
a_{i-1}
\frac{2}{3}
\sqrt{2}
\sum_{i=1}^3
\sin \theta
\boxed{123}
Comments
If you hover your mouse over the Latex image, you can see the code for it.
For problems, you can select "Toggle Latex" from the "Dot dot dot" menu, and that will allow you to see it directly and copy/paste it. For example, the latex code (properly spaced) is:
\ begin{array} { l l l l l }
& & A & B & C & D & E & F \\
\times & & & & & & & 4 \\
\hline & & F & E & D & C & B & A \\
\end{array}
What this means:
& & A & B & C & D & E & F \\
- That is telling you how to create the first line. Each & denotes a seperator.Log in to reply
@Calvin Lin Thank You Sir! But can you explain more clearly about the columns aligned? I tried to make my own equation code, but I'am confused about the number of separatos (&) and the number of columns aligned (the l's). They have a thing in common? For example: if I want to make a 3 column sum, where 2 columns have the numbers and the third column have a times sign. I wrote the code like the following, but it not appears correctly. What's my mistake?
\begin{array} { l l l } & & 1 & 2 \ \times & 5 & 0 \ \hline 6 & 0 & 0 \ \end{array}
Log in to reply
the issue with your code is that you need to use
\\
to end a line instead of just one\
. That did not display correctly in my original post, and I've edited it.Log in to reply
will give
×6501002
Note that you have an additional & in the first line, which is why
1 2
appears off to the right.Log in to reply
@Calvin Lin Thank you very much Sir! :)
×1313133