I have the following code
\documentclass{article}
\begin{document}
\Bigg\{ \big( \big( i,j \big) \big (i+1,j \big) \big) \\
\big(i,j\big)\big(i,j+1\big)\big)
\Bigg\}
\end{document}
after the opening brace the output goes to the next line and I don't understand why especially since this site
https://www.sharelatex.com/learn/Brackets_and_Parentheses shows that this code
\big( \Big( \bigg( \Bigg(
should have the parentheses appearing on one line.
I even tried this LaTeX parenthesis problem with multline environment
doing this
\documentclass{article}
\begin{document}
\Biggl\{ \big( \big( i,j \big) \big (i+1,j \big) \big) \\
\big(i,j\big)\big(i,j+1\big)\big)
\Biggr\}
\end{document}
but that just caused errors.
with the exception of where I put "\\" I'm trying to get everything to appear on one line. Also the odd thing is that the closing parentheses and braces appear as expected on one line just not the opening ones.

$signs. and you should really be using\bigl,\bigr, etc. to get the proper spacing. – barbara beeton Nov 13 '17 at 03:13