From 1cea033b302bb2933816691ff17448f330fe24a6 Mon Sep 17 00:00:00 2001
From: jguzman12 <jguzman12@huskers.unl.edu>
Date: Mon, 18 Nov 2024 23:47:02 -0600
Subject: [PATCH] Upload New File

---
 main.tex | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)
 create mode 100644 main.tex

diff --git a/main.tex b/main.tex
new file mode 100644
index 0000000..1804065
--- /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}
-- 
GitLab