%
% 6.006 homework template
%
% Please rename this document to ps1-jdoe.tex (where jdoe is your
% Athena username) and turn in ps1-jdoe.pdf.
%
% You can compile this document to PDF by typing `pdflatex ps1-jdoe.tex`.
%
% You will need a font included in the texlive-fonts-recommended
% package (which can be installed via apt, or your package manager of
% choice) or the document won't build and you'll get an error about a
% missing font.
%
% NOTE:
% Be sure to define your name with the \name command
% Be sure to use the \answer command for each of your answers 
%   (first argument: problem name
%   second argument: collaborators (write 'none' if you solved it alone))
\documentclass[12pt]{article}

\newcommand{\yourname}{INSERT NAME HERE}
\newcommand{\problemset}{ Problem Set 1, Part A }

\input{macros}

%\pagestyle{headings}
\usepackage[dvips]{graphics,color}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{latexsym}
\usepackage{enumerate}
\usepackage{mdwlist}

\setlength{\parskip}{1pc}
\setlength{\parindent}{0pt}
\setlength{\topmargin}{-3pc}
\setlength{\textheight}{9.5in}
\setlength{\oddsidemargin}{0pc}
\setlength{\evensidemargin}{0pc}
\setlength{\textwidth}{6.5in}

\newcommand{\theproblemsetnum}{1}
\newcommand{\releasedate}{February 1, 2011}
\newcommand{\partaduedate}{Monday, February 14}
\newcommand{\tabUnit}{3ex}
\newcommand{\tabT}{\hspace*{\tabUnit}}


\newcommand{\answer}[2]{
\newpage
\noindent
\framebox{
	\vbox{
		6.006 Homework \hfill {\bf \problemset}
		\hfill \# #1 \\ 
		\yourname \hfill \today \\
                Collaborators: #2
	}
}
\bigskip

}


\begin{document}


\answer{1 --  Asymptotic Growth}{INSERT COLLABORATORS HERE} 
%Write `none' if solved alone.

\begin{enumerate}[(a)]
% To help with LaTeX syntax, the original charts are copied here

\item
  Group 1:
  %% INSERT ANSWER

  %%  \begin{align*}
  %%    f_1 &= 8 \sqrt{n} &
  %%    f_2 &= \binom{n}{2} &
  %%    f_3 &= 2^{2^{100000}} &
  %%    f_4 &= \log n
  %%  \end{align*}

\item
  Group 2:
  %% INSERT ANSWER

  %%  \begin{align*}
  %%    f_1(n) &= 1 / n &
  %%    f_2(n) &= \log \log \log n &
  %%    f_3(n) &= n / \log n &
  %%    f_4(n) &= n^{0.99}
  %%  \end{align*}

\item
  Group 3:
  %% INSERT ANSWER

  %%  \begin{align*}
  %%    f_1(n) &= 2^n &
  %%    f_2(n) &= n \cdot 2^{n/2} &
  %%    f_3(n) &= \log n^n &
  %%    f_4(n) &= \sum_{i=0}^n i
  %%  \end{align*}

\end{enumerate}



% PROBLEM 2

\answer{2 -- Unimodal Maximum}{INSERT COLLABORATORS HERE}
%Write `none' if solved alone.

%% INSERT ANSWER 



% PROBLEM 3

\answer{3 -- (Re)writing History}

\begin{enumerate}[(a)]

\item

%% INSERT ANSWER TO A


\item

%% INSERT ANSWER TO B


\item

%% INSERT ANSWER TO C

\end{enumerate}



% PROBLEM 4

\answer{4 -- Augmented Binary Search Trees}{INSERT COLLABORATORS HERE}
%Write `none' if solved alone.

\begin{enumerate}[(a)]

\item

%% INSERT ANSWER TO A

\item

%% INSERT ANSWER TO B
	
\end{enumerate}

\end{document}

