diff --git a/main.tex b/main.tex new file mode 100644 index 0000000000000000000000000000000000000000..1804065eb0d03223570a46842509432ed068c9dd --- /dev/null +++ b/main.tex @@ -0,0 +1,36 @@ +\documentclass{article} +\usepackage{graphicx} % Required for inserting images + +\title{Homework 3 Dynamic Programming} +\author{Jonatan Guzman} +\date{November 2024} + +\begin{document} + +\maketitle + +\section{Problem 2} + 1. + + 2. + + 3. Dynamic progamming would use the table to reverse a plan by tracing the path backwards from the final state to the initial state +\section{Problem 3} + 1.\[ +\begin{array}{|c|c|} +\hline +i & f(i) \\ +\hline +0 & 1 \\ +1 & 1 \\ +2 & 3 \\ +3 & 6 \\ +4 & 18 \\ +5 & 48 \\ +\hline +\end{array} +\] +2. + + +\end{document}