\documentclass[11pt]{article}
\usepackage{amssymb,amsmath,amsthm,mathrsfs}

%You can define commands for the things you use frequently.
\newcommand{\Z}{{\mathbb Z}}
\newcommand{\N}{{\mathbb N}}
\newcommand{\F}{{\mathbb F}}

%We define environments for questions and solutions (so in the body of the document you can type \begin{question} ... \end{question} and \begin{solution} ... \end{solution}
\newenvironment{question}[1]{\noindent{\large{\bf{Problem #1}}}\hspace{1em} \begin{em}}{\end{em}\bigskip}
\newenvironment{solution}{\noindent\ignorespaces\par\noindent \large{\bf{Solution}} }{\bigskip}

%Set up the margins
\parindent=0cm
\oddsidemargin=-.3in
\evensidemargin=0in
\textwidth=6.9in
\topmargin=-.4in
\textheight=9.2in


\title{Math 116\\Homework (assignment number goes here)}
\author{(your name goes here)}

%Start the document
\begin{document}
	\maketitle	%Generate the title from the title + author information above

	
	\begin{question}{(question number goes here)}
		(The text of the question goes here)
	\end{question}

	\begin{solution}
		(Your solution goes here)
	\end{solution}

\end{document}
