So I'm trying to have four different subsections on "2 different paragraphs". what I mean is the following:
x ¦ x
----¦----
x ¦ x
where x denotes the text I wish to have (without the dashed lines as there will be 4 sets of equations)
EDIT: This is what I've done thus far:
Let us define the following:
\smallskip
$\chi_0(x) = 1$
\bigskip
$\chi_1(x)$ = $\begin{cases}
1, & \text{if } x = 0, \\
a, & \text{if } x = 1, \\
a^2, & \text{if } x = 2, \\
a^3, & \text{if } x = 3, \\
a^4, & \text{if } x = 4,
\end{cases}$
$\chi_2(x)$ = $\begin{cases}
1, & \text{if } x = 0, \\
a^2, & \text{if } x = 1, \\
a^4, & \text{if } x = 2, \\
a, & \text{if } x = 3, \\
a^3, & \text{if } x = 4,
\end{cases}$
$\chi_3(x)$ = $\begin{cases}
1, & \text{if } x = 0, \\
a^3, & \text{if } x = 1, \\
a, & \text{if } x = 2, \\
a^4, & \text{if } x = 3, \\
a^2, & \text{if } x = 4,
\end{cases}$
$\chi_4(x)$ = $\begin{cases}
1, & \text{if } x = 0, \\
a^4, & \text{if } x = 1, \\
a^3, & \text{if } x = 2, \\
a^2, & \text{if } x = 3, \\
a, & \text{if } x = 4,
\end{cases}$
Firstly I want to move the \chi_0(x) down one line; and the other four "blocks" I want them to appear side by side like the following:
chi_1(x) ¦ chi_3(x)
----------¦---------
chi_2(x) ¦ chi_4(x)
I am unsure how to proceed.

\noindent, followed with four minipages with a bit less of a width less than half the width of the text (e.g,0.45\textwidth) and three\hfillbetween minipages. Then put the content of each subsection inside each minipage. If you a problem with that, edit the question and post a minimal working example (MWE) to show so far you are able to get. Note that "minimal" mean "do not show any irrelevant code!" but "working" mean "not a code fragment but compilable as is". – Fran Nov 13 '18 at 12:12