I´m sorry my English mistakes. I would like to align items using tasks or enumerate (or both) to get better experience for me. I have been using the first one a long time, but unfortunately it does not aligning horizontally like tasks. And I don´t know to produce new items in tasks like enumerate.
Here is a MWE.
\documentclass[a4paper, 12pt]{report}
\usepackage{mathpazo, amsmath,amsfonts,amscd,bezier, amssymb, ifthen,amsthm}
\usepackage{babel}
\usepackage[latin1]{inputenc}
\usepackage{enumerate}
\usepackage[shortlabels]{enumitem}
\usepackage{multicol}
\usepackage{tasks}
\usepackage[margin=1.5cm ]{geometry}
\DeclareInstance{tasks}{alphabetize-parents}{default}{
label-format=\itshape
}
\settasks{style=alphabetize-parents}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\pagestyle{myheadings} \thispagestyle{empty}
\noindent Consider
\begin{multicols}{2}
\begin{enumerate}[$(a)$, leftmargin=3.2em]
\item $f(x) = \begin{cases}
\dfrac{1}{x^2}, \mbox{if} \ x\neq 0 \
0, \mbox{if} \ x= 0.
\end{cases}$
\item $ f(x) = \sqrt[3]{x^2}$
\end{enumerate}
\end{multicols}
\begin{tasks}(2)
\task $f(x) = \begin{cases}
\dfrac{1}{x^2}, \mbox{if} \ x\neq 0 \
0, \mbox{if} \ x= 0.
\end{cases}$
\task $ f(x) = \sqrt[3]{x^2}$
\end{tasks}
\end{document}


taskson how to assign custom labels. I think if you just passlabel=(\alph*)it should work. – Willie Wong May 17 '21 at 02:43\begin{align} ... \end{align}environment of theamsmathpackage ? Probably embedding equations insideenumerate, which is again nested insidemulticolsmight not be a good idea (though I'm not sure why) ! – Partha D. May 17 '21 at 03:33