diff --git a/readme.md b/readme.md
index 7e1c03fdbf94b6190476c96dc93437e8d664340f..1fa8ae765f5cef259cb234ad04a841cfbfbf6702 100644
--- a/readme.md
+++ b/readme.md
@@ -3,7 +3,7 @@
 
 ## Description
 Python implementation of a "Simplex" for Linear Programming problems.
-Algorithm is acquired from pages (869, , ) in "Algorithms Third Edition by Thomas H Cormen" book.
+Algorithm is acquired from pages (869, 871, 887) in "Algorithms Third Edition by Thomas H Cormen" book.
 
 
 ## Changes to Algorithm
@@ -33,7 +33,12 @@ Once created, load this environment with `source .venv/bin/activate` on Linux or
 Run the program via `python ./main.py` while at the `python` directory.
 
 ### Expected Output
-None so far.
+Most of the logic is tested through UnitTesting.
+
+However, main has 2 examples of reading in from JSON files, then 1 example of reading in and solving.
+
+For each read in, the problem should be displayed to console in "Tableau" (aka matrix) form.
+After the one is solved, then it should print the solution in all three formats.
 
 
 ## Running Tests