-
Notifications
You must be signed in to change notification settings - Fork 0
/
uiuc-qual-prep.html
54 lines (53 loc) · 1.8 KB
/
uiuc-qual-prep.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="color-scheme" content="dark light" />
<style>
html {font-family: BlinkMacSystemFont, 'Segoe UI', Roboto, 'Open Sans', sans-serif;}
body {margin: 0; padding: 0 2.5em; line-height: 1.5; font-size: 1.1em;}
a:not(:hover) {text-decoration: none;}
@media (max-width: 820px) {
body {padding: 0 1em;}
ul {padding-left: 1em;}
ol {padding-left: 1.2em;}
}
/* color scheme */
body {color: #202020;}
a {color: #1a0dab;}
a:visited {color: #681da8;}
@media (prefers-color-scheme: dark) {
body {background: #1b1e20; color: #c8c8c8;}
a {color: #8ab4f8;}
a:visited {color: #c58af9;}
img {filter: brightness(.8) contrast(1.2);}
}
</style>
</head>
<body>
<h1>Notes for UIUC ISE OR Qualifying Exams</h1>
<ol>
<li><a href="math/lin-alg-or.pdf">Linear Algebra</a></li>
<li>Probability and Stochastic Processes:<ol>
<li><a href="math/probability/probability-basics.pdf">Probability</a></li>
<li><a href="math/probability/stoc-procs.pdf">Stochastic Processes</a></li>
</ol>
</li>
<li>Linear Programming:<ol>
<li><a href="math/polyhedral-theory.pdf">Polyhedral Theory</a></li>
<li><a href="optimization/lin-prog/duality.pdf">Duality</a></li>
<li><a href="optimization/lin-prog/lin-prog-examples.pdf">Examples</a></li>
<li><a href="optimization/lin-prog/simplex-short.pdf">Simplex</a></li>
</ol>
</li>
<li>Integer Programming:<ol>
<li><a href="optimization/int-prog/01-int-criteria.pdf">Criteria for Integrality</a></li>
<li><a href="optimization/int-prog/02-tum.pdf">Total Unimodularity</a></li>
<li><a href="optimization/int-prog/03-cutting-plane.pdf">Cutting Plane</a></li>
<li><a href="optimization/int-prog/04-popular-problems.pdf">Popular Problems</a></li>
</ol>
</li>
</ol>
</body>
</html>