-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdissertation.tex
More file actions
154 lines (127 loc) · 5.14 KB
/
dissertation.tex
File metadata and controls
154 lines (127 loc) · 5.14 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
% ---------------------------------------------------------------------------- %
% file: disseration.tex
% author: Michael Pilosov
%
% LaTeX based on work by Sarah Kreidler and Peter DeWitt
% (github.com/dewittpe/ucd-dissertation-template)
%
%
% ---------------------------------------------------------------------------- %
\documentclass[english,10pt]{ucdenver-dissertation}
\input{env/usepackages}
\input{env/newcommands}
\input{env/pythonenv}
% enables the following:
% \pythonexternal{demo.py}
% \begin{python}-\end{python}
% \pythoninline{import bet}
\input{env/bashenv}
% enables the same functions, but with bash.
\usepackage{lipsum}
\widowpenalty=10000
\clubpenalty=10000
\renewcommand{\floatpagefraction}{0.7}%
% Draft and Time stamp in the header and footer.
\usepackage{fancyhdr}
\usepackage{datetime}
% ---------------------------------------------------------------------------- %
% FRONT MATTER
\makeatletter
\title{Computational Advances in Data-Consistent Inversion: Measure-Theoretic Methods for Parameter Estimation}
\authorLast{Pilosov}
\authorFirst{Michael}
\authorMiddle{}
\education{
B.A., State University of New York: College at Geneseo, 2014 \\
M.S., University of Colorado: Denver, 2017
Ph.D., University of Colorado: Denver, 2020
}
\school{University of Colorado: Denver, College of Liberal Arts and Sciences}
\program{Applied Mathematics}
\date{2020}
\submitDate{December 12, 2020}
\advisor{Dr.~Troy Butler}
\advisorTitle{Associate Professor}
\committeeChair{Dr.~Stephen Billups}
\committeeMembers{
Dr.~Varis Carey \\
Dr.~Jan Mandel \\
Dr.~Jimmy Kim
}
% dedication - this is also optional
\dedication{To Jacob and Anna Ratman.}
% preface
\preface{
\input{abstract.tex}
% \input{notation.tex}
% \input{outline.tex}
}
% acknowledgement - this is optional
\acknowledgements{
\setlength{\parindent}{0.5in}
I am indebted to Dr. Caroline Haddad, who first put the idea of pursuing graduate studies into my mind.
Without her initial encouragement, I would have never started on this path.
Jim Napolitano was the first mathematics teacher to seriously challenge and engage my skills, and did so at a time when my relationship with the subject was particularly fragile.
I owe a thank you to Troy Butler, who was motivated to get all this finished even when I was not.
If it were not his insistence on perfect not being the enemy of good, I would have kept refining this document indefinitely and never completed the program.
Thank you to Dr. Olympia Nicodemi for not giving up on me when I failed my first Real Analysis exam and spent every subsequent office hour patiently helping me compensate for my lack of proof-writing skills.
Those sessions built a foundation that I desperately needed, and I will never forget the feeling of feeling frustrated outside your office while I did homework.
Thank you to Dr. Gary Towsley, who bent some rules to ensure there was no lapse in my education, meeting with me at the town coffee shop every week to teach me Algebraic Geometry.
Thank you to the friends who have been by my side through too many late evenings to count.
Making sure I would not let you down was a larger motivation at times than my own desire to finish.
I have relied on y'all for perspective when I needed it most and am absolutely blessed to have you in my life.
We're doing this in alphabetical order:
Andrew, Christina, Daniel, Elliott, Gabriela, George, Govinda, Jordan, Joseph, Marta, Michael, Ron, Scott, Stephanie, Vincent.
And obviously, a very special thank you is reserved for my wonderful parents\--Anna and Emil\--for their love, support, and defintitely for the grit that drove them to emigrate.
\vfill
}
\usepackage{mathtools} % for \xmapsto
\usepackage{array}
\renewcommand\arraystretch{0.5}
\makeatother
% ---------------------------------------------------------------------------- %
% ---------------------------------------------------------------------------- %
% Begin Document
\begin{document}
% \chead{\small \color{red} DRAFT. Last compiled at \currenttime \ on \today }
\input{chapter01}
\pagebreak
\FloatBarrier
% \input{chapter02}
% \pagebreak
% \FloatBarrier
\input{chapter03}
\pagebreak
\FloatBarrier
\input{chapter04}
\pagebreak
\FloatBarrier
\input{chapter05}
\pagebreak
\FloatBarrier
\input{chapter06}
\pagebreak
\FloatBarrier
% ---------------------------------------------------------------------------- %
\renewcommand\bibname{REFERENCES}
\singlespacing
% \nocite{*}
\bibliographystyle{ref/ucdDissertation}
\bibliography{ref/references,ref/references-code}
\doublespacing
% ---------------------------------------------------------------------------- %
% had to do some TOC shenanigans, so please use the ucdappendix command instead
% of regular old \appendix
\ucdappendix
% \appendix
%\input{notation.tex}
% ---------------------------------------------------------------------------- %
% additional appendices
% \input{ch03/appendix03}
\input{set-based/measuresets}
\input{extensions/decay_extension.tex}
% \input{extensions/mud_pde_tolerance.tex}
\input{extensions/mud_pde_5d_initial.tex}
% ---------------------------------------------------------------------------- %
\end{document}
% ---------------------------------------------------------------------------- %