-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv.tex
1557 lines (1316 loc) · 61 KB
/
cv.tex
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
\documentclass[12pt]{article}
\usepackage{amssymb,amsmath,amsfonts}
%\usepackage{pdfsync}
\usepackage{combelow}
\usepackage{multicol}
\usepackage{footnote}
\usepackage[letterpaper,margin=0.75in,ignoreall]{geometry}
%\usepackage{enumerate}
\usepackage{enumitem}
\usepackage{longtable,adjustbox}
\usepackage{booktabs}
\setlist[enumerate,1]{label={\arabic*.},leftmargin=*,widest=99}
%\usepackage{tabls}
%\setlength\tablinesep{0pt}
%\setlength\arraylinesep{0pt}
%\setlength\extrarulesep{0pt}
\usepackage[breaklinks,colorlinks,allcolors=black]{hyperref}
\usepackage{calc,cleveref,crossreftools}
\crtrefundefinedtext{0}
\newcounter{revcount}
\newcommand\revcounter[1]{%
\setcounter{revcount}{1+\crtcrefnumber{enum-\EnumitemId}-\value{#1}}} \AddEnumerateCounter\revcounter\revcounter{} % the 2nd is dummy
\SetEnumitemKey{revarabic}
% {label = \revcounter*(\arabic{revcount}),
% ref = (\arabic{revcount}),
% after = \label{enum-\EnumitemId}}
{label = \revcounter*\arabic{revcount}.,
ref = \arabic{revcount},
after = \label{enum-\EnumitemId}
}
%\addtolength{\parskip}{\baselineskip}
\setlength{\parindent}{0in}
\begin{document}
%\pagestyle{empty}
\thispagestyle{empty}
% ------ Address --------------------------------------------------------
\begin{center}%
\renewcommand{\footnotemark}{}
\renewcommand{\thefootnote}{}
\large \textbf{Zach Teitler}\footnote{\today}
\end{center}%
\begin{center}
\begin{tabular*}{\textwidth}{@{}l@{\extracolsep{\fill}}r@{}}
Department of Mathematics & Phone: 208-426-1086 \\
Boise State University & Fax: 208-426-1356 \\
1910 University Drive & \url{[email protected]} \\
Boise, ID 83725--1555 & \url{https://sites.google.com/site/zteitler/} \\
\end{tabular*}%
\end{center}
%\bigskip
% ------- Education ---------------------------------------------------
\textbf{Degrees}
\begin{itemize}[label={},labelsep=0in,leftmargin=*,itemindent=-1em]
\item Ph.D. (Mathematics), University of Michigan, 2005\\
Dissertation: Multiplier ideals of line arrangements \\
Advisor: Robert Lazarsfeld
\item[] B.S. (Creative Studies--Mathematics),
University of California--Santa Barbara, 2000
\end{itemize}
% -------- Work experience --------------------------------------------
\textbf{Employment History}
\begin{itemize}[label={},labelsep=0in,leftmargin=*,itemindent=-1em]
\item[] Professor of Mathematics, Boise State University, 2021--Present
\item[] Associate Professor of Mathematics, Boise State University, 2014--2021
\item[] Assistant Professor of Mathematics, Boise State University, 2010--2014
\item[] Visiting Assistant Professor of Mathematics, Texas A\&M University, 2007--2010
\item[] Assistant Professor of Mathematics, Southeastern Louisiana University, 2005--2008
%\item[] Graduate Student Instructor, University of Michigan, 2001--2005
\end{itemize}
% --------- Research ----------------------------------------------------
%\textbf{Research Interests}
%\begin{description}
%\item[] Algebraic geometry. Multiplier ideals. Linear series.
%\end{description}
% -------- Publications ----------------------------------------------------
\textbf{Publications}
\begin{enumerate}[revarabic,labelwidth=*]
\item Garritt Johns, Zach Teitler,
\emph{An improved upper bound for the Waring rank of the determinant},
J.\ Commut.\ Algebra,
2022
\item Mats Boij, Zach Teitler,
\emph{A bound for the Waring rank of the determinant via syzygies},
Linear Alg.\ Appl.,
2020
\item Brian Harbourne, Juan Migliore, Uwe Nagel, Zach Teitler,
\emph{Unexpected hypersurfaces and where to find them},
Michigan Math.\ J.,
2021
\item Jaros{\l}aw Buczy\'nski, Kangjin Han, Massimiliano Mella, Zach Teitler,
\emph{On the locus of points of high rank},
European Journal of Mathematics, 2018
%March 2018, Volume 4, Issue 1, pp 113–136
\item Theodosios Douvropoulos, Joachim Jelisiejew, Bernt Ivar Utst{\o}l N{\o}dland, Zach Teitler,
\emph{The Hilbert scheme of $11$ points in $\mathbb{A}^3$ is irreducible},
in \emph{Combinatorial Algebraic Geometry}, Gregory G.\ Smith, Bernd Sturmfels, eds., 2017, Springer
%(\href{https://arxiv.org/abs/1701.03089}{arXiv:1701.03089} [math.AG])
\item Zach Teitler,
\emph{Sufficient conditions for Strassen's additivity conjecture},
%to appear in Ill.\ J.\ Math.\
Illinois J.\ Math.,
%59(4):1071--1085, 2015
2015
%(\href{https://arxiv.org/abs/1604.07691}{arXiv:1604.\-07691} [math.AG])
\item Jaros{\l}aw Buczy\'nski and Zach Teitler,
\emph{Some examples of forms of high rank},
Collect.\ Math.,
%\textbf{67} (2016), no.\ 3, 431--441
%67(3):431--441, 2016
2016
\item Nathan Ilten and Zach Teitler,
\emph{Product ranks of the $3 \times 3$ determinant and permanent},
Canad.\ Math.\ Bull.,
%\textbf{59} (2016), no.\ 2, 311--319
%59(2):311--319, 2016
2016
%(\href{http://arxiv.org/abs/1503.00822}{arXiv:1503.00822} [math.AG])
%(DOI: \href{http://dx.doi.org/10.4153/CMB-2015-076-1}{10.4153/CMB-2015-076-1})
\item Harm Derksen and Zach Teitler,
\emph{Lower bound for ranks of invariant forms},
JPAA,
%\textbf{219} (2015), Issue 12, 5429--5441
%219(12):5429--5441, 2015
2015
%\href{http://dx.doi.org/10.1016/j.jpaa.2015.05.025}{DOI: 10.1016/j.jpaa.2015.05.025}
%(\href{http://arxiv.org/abs/1409.0061}{arXiv:1409.0061} [math.AG])
\item Kent M.\ Neuerburg and Zach Teitler,
\emph{Decompositions of ideals of minors meeting a submatrix},
Comm.\ Alg.,
%\textbf{44} (2016), no.\ 4, 1809--1820
%44(4):1809--1820, 2016
2016
%(\href{http://arxiv.org/abs/1406.6426}{arXiv:1406.6426} [math.AC])
\item Nickolas Hein, Christopher J. Hillar, Abraham Mart\'in del Campo, Frank Sottile, Zach Teitler,
\emph{The monotone secant conjecture in the real Schubert calculus}
Exp.\ Math.,
%\textbf{24} (2015), no.\ 1, 261--269.
%24(1):261--269, 2015.
2015
%(\href{http://arxiv.org/abs/1109.3436}{arXiv:1109.3436} [math.AG])
(Extended version of abstract presented at MEGA 2011.)
\item Grigoriy Blekherman, Zach Teitler,
\emph{On maximum, typical, and generic ranks},
Math.\ Ann.,
%\textbf{362} (2015), no.\ 3--4, 1021--1031
%362(3--4):1021--1031, 2015
2015
%Math.\ Ann., Dec.\ 2014, \href{http://dx.doi.org/10.1007/s00208-014-1150-3}{DOI: 10.1007/s00208-014-1150-3}
%(\href{http://arxiv.org/abs/1402.2371}{arXiv:1402.2371} [math.AG])
\item Erik Holmes*, Paul Plummer*, Jeremy Siegert*, Zach Teitler,
\emph{Maximum Waring ranks of monomials and sums of coprime monomials},
Comm.\ Alg.,
%\textbf{44} (2016), no.\ 10, 4212--4219
%44(10):4212--4219, 2016\\
2016\\
%to appear in Comm.\ Alg.\
%(\href{http://arxiv.org/abs/1309.7834}{arXiv:1309.7834} [math.AG]) \\
* undergraduate co-author
\item Weronika Buczy\'nska, Jaros{\l}aw Buczy\'nski, Johannes Kleppe, and Zach Teitler,
\emph{Apolarity and direct sum decomposability of polynomials},
Michigan Math.\ J.,
%\textbf{64} (2015), no.\ 4, 675--719
%64(4):675--719, 2015
2015
%(\href{http://arxiv.org/abs/1307.3314}{arXiv:1307.3314} [math.AG])
\item Zach Teitler,
\emph{Software for multiplier ideals},
JSAG,
%\textbf{7} (2015), no.~1, 1--8
%7(1):1--8, 2015
2015
%\href{http://dx.doi.org/10.2140/jsag.2015.7.1}{DOI: 10.2140/jsag.2015.7.1}
%(\href{http://arxiv.org/abs/1305.4435}{arXiv:1305.4435} [math.AG])
\item Zach Teitler and Alexander Woo,
\emph{Power sum decompositions of defining equations of reflection arrangements},
J.~Alg.\ Comb.,
%\textbf{41} (2015), Issue 2, 365--383
%41(2):365--383, 2015
2015
% \href{http://dx.doi.org/10.1007/s10801-014-0539-0}{DOI: 10.1007/\-s10801-014-0539-0}
%(\href{http://arxiv.org/abs/1304.7202}{arXiv:1304.7202} [math.AG])
\item Zach Teitler and Douglas A. Torrance,
\emph{Castelnuovo--Mumford regularity and arithmetic Cohen--Macaulayness of complete bipartite subspace arrangements},
JPAA,
%\textbf{219} (2015), Issue 6, 2134--2138
%219(6):2134--2138, 2015
2015
%, \href{http://dx.doi.org/10.1016/j.jpaa.2014.07.027}{DOI: 10.1016/j.jpaa.\-2014.07.027}
%(\href{http://arxiv.org/abs/1209.2075}{arXiv:1209.2075} [math.AG])
\item Weronika Buczy\'nska, Jaros{\l}aw Buczy\'nski, and Zach Teitler,
\emph{Waring decompositions of monomials},
J.\ Algebra,
%\textbf{378}, (2013), 45--57.
%378:45--57, 2013
2013
\item Zach Teitler,
\emph{Topological criteria for schlichtness},
Proc.\ Edinb.\ Math.\ Soc.\ (2),
%\textbf{56} (2013), no.~2, 637--640.
%56(2):637--640, 2013
2013
\item Javier Elizondo, Paulo Lima-Filho, Frank Sottile, and Zach Teitler,
\emph{Arithmetic toric varieties},
Math.\ Nach.,
%\textbf{287} (2014), Issue 2-3, 216--241
%287(2--3):216-241, 2014
2014
\item Luis Garc\'ia-Puente, Nickolas Hein, Christopher J. Hillar, Abraham Mart\'in del Campo, James Ruffo, Frank Sottile, and Zach Teitler,
\emph{The Secant Conjecture in the real Schubert calculus},
Experimental~Math.,
%\textbf{21} (2012), no.\ 3, 252--265
%21(3):252--265, 2012
2012
\item
Thomas Bauer, Cristiano Bocci, Susan Cooper, Sandra Di Rocco, Marcin Dumnicki, Brian Harbourne, Kelly Jabbusch, Andreas Leopold Knutsen, Alex K\"uronya,
Rick Miranda, Joaquim Ro\'e, Hal Schenck, Tomasz Szemberg, Zach Teitler,
\emph{Recent developments and open problems in linear series},
in \textit{Contributions to Algebraic Geometry}, IMPANGA Lecture Notes, August 2012
\item Susan Cooper, Brian Harbourne, and Zach Teitler,
\emph{Combinatorial bounds on Hilbert functions of fat points in projective space},
J.\ Pure Appl.\ Algebra,
%\textbf{215} (2011), no.\ 9, 2165--2179
%215(9):2165--2179, 2011
2011
\item
Nero Budur, Mircea Musta\cb{t}\u{a}, and Zach Teitler,
\emph{The Monodromy Conjecture for hyperplane arrangements},
Geom.\ Dedicata,
%\textbf{153} (2011), 131--137
%153:131--137, 2011
2011
\item
Christopher Hillar, Luis Garc\'ia-Puente, Abraham Mart\'in del Campo, James Ruffo, Zach Teitler,
Stephen L.\ Johnson, and Frank Sottile,
\emph{Experimentation at the Frontiers of Reality in Schubert Calculus},
Contemp.\ Math.,
%\textbf{517} (2010), 365--380
%517:365--380, 2010
2010
\item J.M.~Landsberg and Zach Teitler,
\emph{On the ranks and border ranks of tensors and symmetric tensors},
Found.\ Comput.\ Math.,
%\textbf{10} (2010), no.\ 3, 339--366
%10(3):339--366, 2010
2010
\item Zach Teitler,
\emph{Bounding symbolic powers via asymptotic multiplier ideals},
Ann.\ Univ.\ Pedagog.\ Crac.\ Stud.\ Math.,
%\textbf{8} (2009), 67--77
%8:67--77, 2009
2009
\item Ulrich Derenthal, Michael Joyce, and Zach Teitler,
\emph{The nef cone volume of generalized Del Pezzo surfaces},
Algebra \& Number Theory,
%\textbf{2} (2008), no.\ 2, 157--182
%2(2):157--182, 2008
2008
\item Zach Teitler,
\emph{A note on Musta\cb{t}\u{a}'s computation of multiplier ideals of hyperplane arrangements},
Proc.\ Amer.\ Math.\ Soc.,
%\textbf{136} (2008), no.\ 5, 1575--1579
%136(5):1575--1579, 2008
2008
\item Zachariah C. Teitler,
\emph{On the intersection of the curves through a set of points in $\mathbb{P}^2$},
J.\ Pure Appl.\ Algebra,
%\textbf{209} (2007), no.~2, 571--581
%209(2):571--581, 2007
2007
\item Zachariah C. Teitler,
\emph{Multiplier ideals of general line arrangements in $\mathbb{C}^3$},
Comm.\ Alg.,
%\textbf{35} (2007), no.~6, 1902--1913
%35(6):1902--1913, 2007
2007
\end{enumerate}
\textbf{Unpublished}
\begin{enumerate}[revarabic,labelwidth=*]
\item Zach Teitler,
\emph{Geometric lower bounds for generalized ranks} %,
%submitted
(\href{http://arxiv.org/abs/1406.5145}{arXiv:1406.5145} [math.AG])
\end{enumerate}
\textbf{Software}
\begin{enumerate}[revarabic,labelwidth=*]
\item MultiplierIdeals:
a Macaulay2 package for computing multiplier ideals of special ideals including monomial ideals, monomial curves, and generic determinantal ideals.
\item ApolarIdeal:
a Macaulay2 package for computing apolar ideals
\item CombinatorialIteration:
a Macaulay2 package providing iterators for several common combinatorial structures
\end{enumerate}
%\textbf{Conference Abstracts}
%\begin{enumerate}[1.]
%
%\item Jonathan D.\ Hauenstein, Nickolas Hein, Christopher J.\ Hillar,
%Abraham Mart\'in del Campo, Frank Sottile, and Zach Teitler,
%\emph{The Monotone Secant Conjecture in the real Schubert calculus},
%Extended abstract presented in MEGA 2011
%(\href{http://arxiv.org/abs/1109.3436}{arXiv:1109.3436} [math.AG])
%
%\end{enumerate}
%\newpage
% -------- Grants and awards --------------------------------------------
\textbf{Grants and Awards}
\begin{enumerate}[revarabic,labelwidth=*]
\item Simons Foundation Collaboration Grants for Mathematicians (award \#354574, 2015--2020, \$35,000)
\item COAS Travel Grant, for travel to CMS Winter Meeting, Hamilton, Ontario, December 2014 (\$500)
\item COAS Travel Grant, for travel to Institute of Mathematics of the Polish Academy of Sciences, Warsaw, January 2013 (\$500)
\item Boise State University College Of Arts and Sciences (COAS) Travel Grant, for travel to AMS Sectional Meeting at University of Iowa, March 2011 (\$300)
\item (with W.~Bangerth, R.~Carroll, and F.~Sottile)
NSF SCREMS Grant ``Cluster Computing for the
Mathematical Sciences at Texas A\&M University''
(DMS-0922866, 2009--2010, \$59,480)
\item (with Kent Neuerburg)
Louisiana University Board of Regents Research Competitiveness Subprogram (RCS) grant,
``Geometry and Algebra of Ideals Generated by Determinants'' \\
(LEQSF(2007-10)-RD-A-28, 2007--2010, \$59,892)
%[held 2007--2008, until resignation of Southeastern Louisiana University faculty position]
\item Southeastern Louisiana University Center for Faculty Excellence, Travel Grant for travel to University of Nebraska--Lincoln,
October, 2006
\item Southeastern Louisiana University Center for Faculty Excellence, Center's Innovative Teaching Initiative (CITI) grant
for travel to Project NExT, 2006--7
\item Travel Grant for Emerging Faculty, Louisiana Board of Regents/NSF,
March--April~2005
\item Regents-VIGRE Graduate Fellow, University of Michigan,
September~2000--April~2005
\item Raymond L.~Wilder Award, University of California--Santa Barbara,
Department of Mathematics,
June~2000
\end{enumerate}
%\textbf{Grant Proposals}
%\begin{description}
%\setlength\labelsep{0pt}
%\item[] ``Commutative Algebra and Waring Rank'', NSF, 2014, pending
%\item[] ``Commutative Algebra and Waring Rank'', NSA, 2014, pending
%\item[] Collaboration Grants for Mathematicians, Simons Foundation, 2014, not funded
%\item[] NSF Grant ``Apolarity, Waring Rank, and Generalized Waring Rank'', 2013, not funded
%\item[] NSA Young Investigator's Grant ``Apolarity, Waring Rank, and Generalized Waring Rank'', 2013, not funded
%\item[] Collaboration Grants for Mathematicians, Simons Foundation, 2013, not funded
%\item[] NSA Young Investigator's Grant ``Waring Problems, Apolarity, and Computations in Algebraic Geometry'', 2012, not funded
%\item[] NSA conference/workshop grant ``Intensive Workshop in 2014 for Macaulay 2 Development'', 2012, not funded
%\item[] NSF Grant ``Waring Problems, Apolarity, and Computations in Algebraic Geometry'', 2012, not funded
%\item[] NSA Young Investigator's Grant ``Computational and combinatorial algebraic geometry'', 2011, not funded
%\item[] Collaboration Grants for Mathematicians, Simons Foundation, 2011, not funded
%\item[] NSA Young Investigator's Grant ``Computational and combinatorial algebraic geometry'', 2010, not funded
%\item[] NSF Grant ``Computational and combinatorial algebraic geometry'', 2010, not funded
%\end{description}
% -------- Conference Presentations ----------------------------------------------------
\textbf{Selected Invited Conference Presentations}
\begin{enumerate}[revarabic,labelwidth=*]
\item \textit{Apolar ideals of powers of power sums and of general hyperplane arrangements},
AMS 2023 Fall Central Sectional Meeting, Omaha
(Special Session on Varieties with unexpected hypersurfaces, geproci sets, and their interactions),
October 7--8, 2023
\item \textit{An upper bound for the Waring rank of the determinant},
AMS 2021 Spring Western Sectional Meeting, San Francisco (virtual)
(Special Session on Quivers, Tensors, and their Applications),
May 1--2, 2021
\item \textit{A bound for the Waring rank of the determinant via syzygies},
SIAM Pacific Northwest Section Biennial Meeting, Seattle University
(Thematic Session on Algebra, Geometry, and Applications),
October 18--20, 2019
\item \textit{A bound for the Waring rank of the determinant via syzygies},
SIAM Conference on Applied Algebraic Geometry, Bern, Switzerland
(Session: The algebra and geometry of tensors 2: structured tensors),
July 9--13, 2019
\item \textit{A bound for the Waring rank of the determinant via syzygies},
AMS 2018 Fall Central Sectional Meeting, Ann Arbor, MI
(Special Session on Commutative Algebra and Complexity),
October 20--21, 2018
\item \textit{Waring ranks},
three plenary lectures and problem session,
for the \emph{Varieties and Group Actions} workshop of the \emph{Varieties: Arithmetic and Transformations}
semester of the IMPAN (Institute of Mathematics of the Polish National Academy of Sciences),
Warsaw, Poland, September 23--29, 2018
\item \textit{Geometry of high rank loci},
Spring 2017 AMS Western Sectional, Pullman, WA
(Special Session on Combinatorial and Computational Commutative Algebra and Algebraic Geometry),
April 22--23, 2017
\item \textit{Direct sum decomposability of forms},
Spring 2017 AMS Western Sectional, Pullman, WA
(Special Session on Commutative Algebra),
April 22--23, 2017
\item \textit{Lower bound for ranks of invariant forms},
CMS Winter Meeting, Hamilton, Ontario,
December 5--8, 2014
\item \textit{On maximum, typical, and generic ranks},
Spring 2014 AMS Central Sectional, Lubbock, TX,
April 11--13, 2014
\item \textit{Direct sum decomposability of polynomials},
Interactions between Commutative Algebra and Algebraic Geometry II,
Tulane,
September 28--29, 2013
\item \textit{Software for computing multiplier ideals},
SIAM Conference on Applied Algebraic Geometry,
Colorado State University,
August 1--4, 2013
\item \textit{Direct sum decomposability of polynomials},
SIAM Conference on Applied Algebraic Geometry,
Colorado State University,
August 1--4, 2013
\item \textit{Experimentation at the Frontiers of Reality in Schubert Calculus},
AAAS Pacific Division 2012 Meeting,
Boise, ID, June 27, 2012
\item \textit{Software for computing multiplier ideals},
Michigan Computational Algebraic Geometry 2012,
Oakland University, May 13, 2012
\item \textit{Ranks and Generalized Ranks},
2011 SIAM Conference on Applied Algebraic Geometry,
NCSU, October 7, 2011
\item \textit{Software for the computation of multiplier ideals},
MEGA (Effective Methods in Algebraic Geometry), Stockholm, Sweden, June 1, 2011
\item \textit{Ranks and generalized ranks},
Toric geometry and applications, Leuven, Belgium, June 6, 2011
%\item \textit{Ranks of polynomials}, AMS Sectional, Iowa City, March 19, 2011
%
%\item \textit{Combinatorial bounds for Hilbert functions and graded Betti numbers of fat point schemes},
%Oberwolfach workshop on Linear Series on Algebraic Varieties, October 5, 2010
%
%\item \textit{Experimentation at the Frontiers of Reality in Schubert Calculus},
%Joint Mathematics Meetings, January 16, 2010
%
%\item \textit{Experimentation at the Frontiers of Reality in Schubert Calculus},
%AMS Central Section Meeting, October 18, 2009
%
%\item (Poster) \textit{Hilbert functions of fat point schemes},
%Pan-American Advanced Study Institute (PASI)
%in
%Commutative Algebra and its Connections to Geometry,
%Olinda, Brazil, August 2009
%
%\item \textit{Experimentation at the Frontiers of Reality in Schubert Calculus},
%AMS Southeastern Section Meeting, April 5, 2009
%
%\item \textit{Bounding Hilbert functions of fat point schemes},
%AMS Fall Western Section Meeting, October 4, 2008
%
%\item \textit{Multiplier ideals of hyperplane arrangements},
%AMS Southeastern Sectional Meeting, March 28, 2008
%
%\item \textit{Multiplier ideals of hyperplane arrangements},
%AMS Southeastern Sectional Meeting, March 3, 2007
%
%\item \textit{On the intersection of the curves through a set of points in $\mathbb{P}^2$},
%Joint Mathematics Meetings, January 8, 2007
%\item \textit{Introduction to Multiplier Ideals}, AGIL, October 7, 2006
%\item \textit{On the intersection of the curves through a set of points in $\mathbb{P}^2$},
%AMS Southeastern Sectional Meeting, April 2, 2006
%\item \textit{How many points does it take to determine a curve?}, MAA Sectional Meeting, February 18, 2006
\end{enumerate}
% -------- Seminar Presentations ----------------------------------------------------
\textbf{Selected Invited Seminar and Colloquium Presentations}
\begin{enumerate}[revarabic,labelwidth=*]
\item \textit{Invitation to Waring rank}, New Mexico State University, Algebra Seminar, November 13, 2023
\item \textit{Waring ranks of homogeneous forms}, University of Washington, Algebra and Algebraic Geometry Seminar, November 21, 2017
\item \textit{Waring ranks of homogeneous forms}, York University, Combinatorics Seminar, November 7, 2016
\item \textit{Waring ranks of homogeneous forms}, Fields Institute, University of Toronto, October 18, 2016
\item \textit{Bounds for Waring rank}, McMaster University, Algebra Seminar, September 19, 2016
\item \textit{Bounds for Waring rank}, University of Minnesota, Commutative Algebra Seminar, February 18, 2016
\item \textit{Bounds for Waring rank}, Central Michigan University, Colloquium, November 16, 2015
\item \textit{Bounds for Waring rank}, University of Utah, Commutative Algebra Seminar, October 6, 2015
\item \textit{Geometric lower and upper bounds for Waring rank}, University of Arkansas, Colloquium, January 6, 2015
\item \textit{Ranks of polynomials}, University of Idaho, Colloquium, March 27, 2014
\item \textit{Apolarity, Waring ranks, and direct sum decomposability of polynomials}, Queen's University, Algebraic Geometry Seminar, January 13, 2014
\item \textit{A geometric lower bound for rank}, IMPANGA, Warsaw, Poland, January 11, 2013
\item \textit{Direct sum decomposability and apolarity}, MIMUW Algebraic Geometry Seminar, Warsaw, Poland, January 10, 2013
%\item \textit{Ranks of polynomials}, Cleveland State and Kent State, April 20--23, 2011
%\item \textit{Ranks of polynomials} and \textit{Experimentation at the Frontiers of Reality in Schubert Calculus}, Idaho State University, March 31--April 1, 2011
%\item \textit{Ranks of polynomials}, University of Utah, Commutative Algebra Seminar, May 30, 2011
%\item \textit{Experimentation at the Frontiers of Reality in Schubert Calculus}, University of Idaho, Colloquium, Feb.\ 3, 2011
%
%\item \textit{Ranks of polynomials},
%University of Kentucky, Algebra Seminar, February 8, 2010
%\item \textit{Ranks of polynomials},
%Rice, Algebra Seminar, February 2, 2010
%\item \textit{Counting curves through points with multiplicities},
%Texas State University San Marcos, December 4, 2009
%\item \textit{Ranks of polynomials},
%Pomona College, November 24, 2009
%\item \textit{Ranks of polynomials},
%UC Santa Barbara, November 23, 2009
%\item \textit{Ranks of polynomials},
%Sam Houston State University, November 18, 2009
%\item \textit{Introduction to multiplier ideals and an application to commutative algebra},
%Notre Dame, November 13, 2009
%\item \textit{Ranks of polynomials},
%UT Austin, October 13, 2009
%\item \textit{Arithmetic toric varieties},
%UT Austin, October 13, 2009
%\item \textit{Introduction to multiplier ideals and an application to commutative algebra},
%UT Arlington, October 9, 2009
%\item \textit{Ranks of polynomials},
%Kansas U., September 22, 2009
%\item \textit{Ranks of polynomials},
%UIUC, September 4, 2009
%\item \textit{Ranks of polynomials},
%TCU, April 22, 2009
%\item \textit{Ranks of polynomials},
%Texas Tech, April 17, 2009
%\item \textit{Ranks of polynomials},
%Baylor, March 4, 2009
%\item \textit{Ranks of polynomials},
%Purdue, February 25, 2009
%\item \textit{Experimentation at the Frontiers of Reality in Schubert Calculus},
%Purdue, February 25, 2009
%\item \textit{Ranks of polynomials},
%UT Arlington, February 13, 2009
%\item \textit{Bounding Hilbert functions of fat point schemes},
%UIUC, October 14, 2008
%\item \textit{Multiplier ideals of hyperplane arrangements},
%UT Austin, April 15, 2008
%\item \textit{Multiplier ideals of hyperplane arrangements},
%Tulane, March 26, 2008
%\item \textit{On the intersection of the curves through a set of points in $\mathbb{P}^2$},
%University of Nebraska, October 27, 2006
%\item \textit{On the intersection of the curves through a set of points in $\mathbb{P}^2$},
%Tulane, September 25,~2006
%\item \textit{Multiplier ideals of line arrangements}, University of Utah, September 12, 2006
%\item \textit{Singularities in Algebraic Geometry}, Tulane, April 26,~2006
\end{enumerate}
\textbf{Selected Local Seminar Presentations}
\begin{enumerate}[revarabic,labelwidth=*]
\item \textit{Alese's two cut theorem},
TATERS, Boise State University, February 21, 2020
\item \textit{Power sum decomposition of determinant},
TATERS (Topics in Algebra, Topology, Etc.\ Research Seminar), Boise State University, February 14, 2020
\item \textit{Frobenius's Theorem on Linear Preservers of Determinant},
Mathematics Seminar, Boise State University, January 24, 2020
\item \textit{Lucas’s theorem and MathOverflow 10},
AGC Seminar, Boise State University, October 11, 2019
\item \textit{Huang's proof of the sensitivity conjecture},
AGC Seminar, Boise State University, September 27, 2019
\item \textit{Hurwitz’s 1,2,4,8 theorem via linear algebra},
AGC Seminar, Boise State University, February 8, 2019
\item \textit{A theorem of Polya on polynomials},
AGC Seminar, Boise State University, October 5, 2018
\item \textit{A bound for the Waring rank of the determinant via syzygies},
AGC Seminar, Boise State University, September 14, 2018
\item \textit{Sperner’s Theorem and the Erdos-Ko-Rado Theorem},
AGC Seminar, Boise State University, March 9, 2018
\item \textit{High-rank and maximum-rank geometry},
AGC Seminar, Boise State University, October 6, 2017
\item \textit{Recent* advances in Waring rank and apolarity},
AGC Seminar, Boise State University, September 22, 2017
\item \textit{The Gessel-Viennot theorem},
AGC Seminar, Boise State University, April 7, 2017
\item \textit{Lefschetz properties, hyperplane arrangements, inclusion matrices},
AGC Seminar, Boise State University, March 3, 2017
%\item \textit{Geometry of high rank loci},
%AGC Seminar, Boise State University, January 20, 2017
%\item \textit{Arrangement apolarity},
%AGC Seminar, Boise State University, February 3, 2017
%\item \textit{Random graphs},
%AGC Seminar, Boise State University, January 29, 2016
%\item \textit{Strassen's additivity conjecture and bounds for Waring rank},
%AGC Seminar, Boise State University, January 15, 2016
%\item \textit{Waring rank bounds},
%AGC Seminar, Boise State University, September 25, 2015
%\item \textit{The slope problem},
%AGC Seminar, Boise State University, April 17, 2015
%\item \textit{Using cotangent to find the sum of $1/n^{2k}$},
%AGC Seminar, Boise State University, February 27, 2015
%\item \textit{Monsky's theorem},
%AGC Seminar, Boise State University, November 21, 2014
%\item \textit{Recent advances in Waring rank and apolarity},
%Graduate Student Seminar, Boise State University, September 19, 2014
%\item \textit{The addition of residue classes modulo $n$},
%AGC Seminar, Boise State University, September 12, 26, 2014
%\item \textit{Lower bound for ranks of invariant forms},
%AGC Seminar, Boise State University, September 5, 2014
%\item \textit{Two puzzles},
%AGC Seminar, Boise State University, April 29, 2014
%\item \textit{Determinants and permanents as sums of products of linear forms},
%AGC Seminar, Boise State University, April 15, 2014
%\item \textit{The sequence $1, 3, 16, 125, 1296, \dotsc$, two ways},
%AGC Seminar, Boise State University, January 28, 2014
%\item \textit{``The Simple Tarski-Seidenberg Tutorial Series''},
%AGC Seminar, Boise State University, Feb.~11, 18, 25, Mar.~4, 11, 18, May 6, 2014
%\item \textit{On Maximum, Generic, and Typical Ranks},
%AGC Seminar, Boise State University, December 3, 2013
%\item \textit{Multiplier Ideals: From Integrals to Algebra},
%AGC Seminar, Boise State University, November 5, 2013
%\item \textit{Singularities and Multiplier Ideals},
%AGC Seminar, Boise State University, October 29, 2013
%\item \textit{Maximum ranks of monomials},
%AGC Seminar, Boise State University, October 1, 8, 2013
%\item \textit{Recent advances in Waring rank and apolarity},
%AGC Seminar, Boise State University, September 17, 2013
%\item \textit{Recent advances in Waring rank and apolarity},
%Mathematics Department Colloquium, Boise State University, September 5, 2013
%\item \textit{Apolarity and reflection groups},
%AGC Seminar, Boise State University, April 30, 2013
%\item \textit{How many curves?},
%AGC Seminar, Boise State University, April 16, 2013
%\item \textit{Powers of elements and monomial ideals},
%AGC Seminar, Boise State University, February 26, 2013
%\item \textit{Symbolic vs ordinary powers},
%AGC Seminar, Boise State University, January 29, 2013
%\item \textit{Some questions about power sum decompositions},
%AGC Seminar, Boise State University, November 13, 2012
%\item \textit{Apolarity and Waring's problem},
%AGC Seminar, Boise State University, September 18, 2012
%\item \textit{Open problems discussion},
%AGC Seminar, Boise State University, September 4, 2012
%\item \textit{Experimentation at the Frontiers of Reality in Schubert Calculus},
%Undergraduate Math Seminar, Boise State University, April 24, 2012
%\item \textit{Decompositions of determinantal ideals},
%AGC Seminar, Boise State University, March 19, 2012
%\item \textit{Waring decompositions of monomials},
%AGC Seminar, Boise State University, January 25, 2012
%\item \textit{Toric varieties},
%AGC Seminar, Boise State University, December 7, 2011
%\item \textit{Two independently discovered solutions to Waring's problem for monomials within the last week},
%AGC Seminar, Boise State University, October 12, 2011
%\item \textit{Introduction to topos theory I, II},
%AGC Seminar, Boise State University, April 13, May 4, 2011
%\item \textit{Introduction to Elliptic Curves and Cryptology},
%AGC Seminar, Boise State University, 2010--2011
%\item \textit{Experimentation at the Frontiers of Reality in Schubert Calculus},
%AGC Seminar, Boise State University, September 17, 2010
%\item \textit{Experimentation at the Frontiers of Reality in Schubert Calculus},
%Student Seminar, Boise State University, September 15, 2010
%\item \textit{The nef cone volume of generalized Del Pezzo surfaces},
%Number theory seminar, TAMU, September 23, 2009
%\item \textit{Introduction to multiplier ideals} and \textit{Properties and applications of multiplier ideals},
%TAMU Several Complex Variables seminar, February 14--March 6, 2008
%\item \textit{Hilbert functions of fat point schemes supported on linear
%configurations in $\mathbb{P}^2$},
%TAMU, November 12, 2007
%\item \textit{The nef cone of generalized Del Pezzo surfaces},
%TAMU, September 3, October 1, 2007
%\item \textit{Introduction to Multiplier Ideals}, Texas A\&M, November 10, 2006
%\item \textit{Introduction to Representation Theory}, Southeastern Lousiana University, June--August~2006
%\item \textit{Encryption}, Southeastern Lousiana University, November 11, 2005
%\item \textit{Projective Geometry}, Southeastern Lousiana University, September 9, 16, 30, 2005
%\item \textit{Knots, DNA, and Singularities},
%Undergraduate Math Club, U.~Michigan, November 4, 2004
%\item \textit{Bogomolov Instability},
%Student Seminar, U.~Michigan, November 4, 2003
%\item \textit{Invertibility of Endomorphisms of Hypersurfaces},
%Student Seminar, U.~Michigan, September 9, 2003
%\item \textit{Some Chern Class Computations},
%Student Seminar, U.~Michigan, February 18, 2003
%\item \textit{Knots near the singular points of plane algebraic curves},
%Student Seminar, U.~Michigan, March 19, 2002
\end{enumerate}
\textbf{Conference, Session, and Seminar Organization}
See \url{https://sites.google.com/site/zteitler/home/events}.
\begin{enumerate}[revarabic,labelwidth=*]
\item \textit{Special Session on Combinatorial and Computational
Commutative Algebra and Algebraic Geometry}
at the Spring 2016 Western Sectional AMS Meeting,
April 9-10, 2016, Salt Lake City (co-organizer) \\
21 speakers
\item \textit{AMS Special Session on Tensor Decompositions and Secant Varieties}
at the Joint Mathematics Meetings, Seattle, January, 2016 (organizer) \\
6 speakers
\item Macaulay2 Workshop, Boise State University, May 27-30, 2015 (local co-organizer) \\
37 participants. Supported by NSF DMS 10-02171 / NSF DMS 10-02210.
\item Western Algebraic Geometry Symposium, University of Idaho, October 11--12, 2014 (local co-organizer) \\
6 speakers, 58 registered participants. Partially supported by NSF.
\item \textit{Special Session on Combinatorial and Computational
Commutative Algebra and Algebraic Geometry}
at the Spring 2013 Western Sectional AMS Meeting,
April 13-14, 2013, Boulder, Colorado (co-organizer) \\
19 speakers
\item \textit{Special Session on Computational and Algorithmic Algebraic Geometry}
at the AMS 2011 Fall Western Section Meeting, Salt Lake City, October 22-23, 2011 (co-organizer) \\
20 speakers
\item Algebra, Geometry, Cryptology (AGC) Seminar at Boise State, 2010--Present (co-organizer) \\
\url{http://math.boisestate.edu/seminars/agc/}
\item Algebraic Geometry Seminar at Texas A\&M, 2007--2010 (co-organizer)
\item \textit{AMS Special Session on Computational Algebra and Convexity}
at the Joint Mathematics Meetings, Washington, DC, January, 2009 (co-organizer) \\
16 speakers
\item \textit{Special Session on Algebraic Geometry of Matrices and Determinants}
at the AMS 2008 Spring Southeastern Meeting, Baton Rouge, March 28-30, 2008 (co-organizer) \\
14 speakers
\item Regional conference AGIL: Algebraic Geometry In Louisiana, 2006, 2007 (co-organizer) \\
%October 7, 2006: \url{https://math.boisestate.edu/~zteitler/the_past/agile06fall.html} \\
%April 14, 2007: \url{https://math.boisestate.edu/~zteitler/the_past/agile06fall.html} \\
3 speakers at each event
\end{enumerate}
\textbf{Selected Conferences and Workshops Attended}
\begin{enumerate}[revarabic,labelwidth=*]
\item Bruce Reznick 66 fest: A mensch of Combinatorial-Algebraic Mathematics, Bern, Switzerland, July 8, 2019
\item Tensors in Computer Science and Geometry, Simons Institute for the Theory of Computing, Berkeley, CA, November 10--14, 2014
\item Recent Advances in Algebraic Geometry: a conference in honor of Robert Lazarsfeld's 60th birthday,
University of Michigan, May 16--19, 2013
\item Western Algebraic Geometry Symposium, University of Utah, October 20--21, 2012
\item Macaulay2 workshop, Wake Forest, NC, Aug.~4--10, 2012
\item Western Algebraic Geometry Symposium, University of Washington, Seattle, April 14--15, 2012
\item IMA (Institute for Mathematics and its Applications) Special Workshop on Macaulay2, Minneapolis, July 2011
%\item NCSI/EPSCoR Introduction to Parallel Programming and Cluster Computing, June 2011
%\item ARCC (American Institute of Mathematics Research Conference Center) workshop on
%``Algebraic systems with only real solutions'', October, 2010
%\item MSRI workshop on \textit{Combinatorial, Enumerative and Toric Geometry}, March, 2009
%\item Park City Math Institute summer research program on ``Analytic and Algebraic Geometry'', July 2008
\item AMS Math Research Communities program on ``Computational Algebra \& Convexity'', June 2008
%\item ARCC (American Institute of Mathematics Research Conference Center) workshop on
%``Integral Closure, Multiplier Ideals, and Cores'', December, 2006
%\item Research Recovery and Restoration (workshop on grant writing), UL Monroe, June 5,~2006
%\item TAGS (Texas Algebraic Geometry Seminar) conference and workshop on error-correcting codes, Texas~A\&M University, May 17--21 2006
%\item LA/MS Section NExT, February 17,~2006
\end{enumerate}
\textbf{Conference Presentations and Attendance Canceled due to COVID} \\
Plans to attend and/or speak at the following conferences in Spring 2020 were canceled due to COVID.
These meetings fell early in the pandemic and there was not enough time for them to transition to online formats.
\begin{enumerate}[revarabic,labelwidth=*]
\item BrianFest (60th birthday celebration of Brian Harbourne), Lincoln, NE, May 16-17, 2020
\item Macaulay2 Workshop, Cleveland, May 11-15, 2020
\item Macaulay2 internals, Cleveland, May 8-10, 2020
\item AMS Sectional in Charlottesville, VA, March 13-15, 2020.
Invited presentation: ``Recent progress toward the Waring rank of the determinant'',
Special Session on Tensors and Complexity.
\end{enumerate}
% -------- Activities ------------------------
\textbf{Academic Advising --- Graduate Advising}
\begin{enumerate}[revarabic,labelwidth=*]
\item Jinha Park \\
M.S. Mathematics, Boise State University, 2025 (expected) \\
\item Warren Hatton \\
M.S. Mathematics, Boise State University, 2025 (expected)
\item Max Sullivan \\
M.S. Mathematics, Boise State University, 2022 \\
Thesis: \emph{Waring Rank and Apolarity of Some Symmetric Polynomials} \\
\url{https://scholarworks.boisestate.edu/td/1955/}
\item
Stuart Nygard \\
M.S. Mathematics, Boise State University, 2016 \\
Thesis: \emph{The density topology on the reals and other spaces} \\
\url{http://scholarworks.boisestate.edu/td/1143/}
\item Monica Josue Agana (Co-advisor: Andr\'es Eduardo Caicedo) \\
M.S. Mathematics, Boise State University, 2015 \\
Thesis: \emph{Classical theory of rearrangements} \\
\url{http://scholarworks.boisestate.edu/td/1039/}
\item Anna Marie Megale \\
M.S. Mathematics, Boise State University, 2015 \\
Thesis: \emph{The Frobenius problem} \\
\url{http://scholarworks.boisestate.edu/td/1048/}
%\item[] Dillon Wardwell \\
%M.S. Mathematics, Boise State University (incomplete). Advised 2013--2014
\end{enumerate}
\textbf{Academic Advising --- Graduate Committee Member}
\begin{enumerate}[revarabic,labelwidth=*]
\item Amanda Palmer Dusenbury \\
M.S. Mathematics, Boise State University, 2025 (expected) \\
Advisor: Uwe Kaiser
\item Austin Fender \\
M.S. Mathematics, Boise State University, 2024 \\
Advisor: Uwe Kaiser
\item Milan Zanussi \\
M.S. Mathematics, Boise State University, 2021 \\
Advisor: Sam Coskey
\item Kennedy Courtney \\
M.S. Mathematics, Boise State University, 2020 \\
Advisor: Jens Harlander \\
Thesis: \emph{The Directed Forest Complex of Cayley Graphs} \\
\url{https://scholarworks.boisestate.edu/td/1684/}
\item Mitchell Scofield \\
M.S. Mathematics, Boise State University, 2019 \\
Advisor: Jens Harlander \\
Thesis: \emph{On the Fundamental Group of Plane Curve Complements} \\
\url{https://scholarworks.boisestate.edu/td/1538/}
\item Khoi Le \\
M.S. Mathematics, Boise State University, 2018 \\
\item Phillip W.\ Hart \\
M.S. Mathematics, Boise State University, 2015 \\
Advisor: Uwe Kaiser \\
Thesis: \emph{Monodromy representation of the braid group} \\
\url{http://scholarworks.boisestate.edu/td/989/}
\item Tyler Allyn \\
M.S. Mathematics, Boise State University, 2014 \\
Advisor: Jens Harlander \\
Thesis: \emph{Diagrammatically reducible 2-complexes} \\
\url{http://scholarworks.boisestate.edu/td/815/}
\item Uri Rogers \\
Ph.D. Electrical and Computer Engineering, Boise State University, 2014 \\
Advisor: Hao Chen \\
Dissertation: \emph{On uniformly most powerful decentralized detection} \\
\url{http://scholarworks.boisestate.edu/td/805/}
\item Summer Lynne Kisner \\
M.S. Mathematics, Boise State University, 2013 \\
Advisor: Andr\'es Eduardo Caicedo \\
Thesis: \emph{Schur's theorem and related topics in Ramsey theory} \\
\url{http://scholarworks.boisestate.edu/td/376/}
\item Katherine Kylee Zebedeo \\
M.S. Mathematics, Boise State University, 2012 \\
Advisor: Uwe Kaiser \\
Thesis: \emph{Regular homotopy of closed curves on surfaces} \\
\url{http://scholarworks.boisestate.edu/td/326/}
\end{enumerate}
\textbf{Academic Advising --- Undergraduate Senior Theses}
\begin{enumerate}[revarabic,labelwidth=*]
\item Zachary Camargo \\
B.S. Chemistry and B.S. Mathematics, Boise State University, 2024 \\
Senior thesis: \emph{Mathematical Foundations of Molecular Symmetry}
\item Sam Deters \\
B.S. Mathematics, Boise State University, 2023 \\
Senior thesis: \emph{Using Generating Functions to Prove an Identity of Partitions}
\item Camryn Edens \\
B.S. Applied Mathematics, Boise State University, 2022 \\
Senior thesis: \emph{Home Field Advantage, Myth or Fact?}
\item Mariah Davis \\
B.S. Applied Mathematics, Boise State University, 2022 \\
Senior thesis: \emph{The Reading Trends of Seattle Residents}
\item Amanda Lopez \\
B.S. Mathematics, Boise State University, 2022 \\
Senior thesis: \emph{Significant Cryptological Events Through WWII}
\item Miranda Schaeffer \\
B.S. Mathematics, Boise State University, 2021 \\
Senior thesis: \emph{Partially Ordered Sets}
\item Sarah Hall \\
B.S. Mathematics, Boise State University, 2021 \\
Senior thesis: \emph{Permutation statistics}
\item Tyler Ware \\
B.S. Applied Mathematics, Boise State University, 2021 \\
Senior thesis: \emph{Waring rank's utility in optimizing algorithms
involving point evaluations of homogeneous polynomials}
\item Bailey Fadden \\
B.S. Applied Mathematics, Boise State University, 2020 \\
Senior thesis: \emph{Using the Chi-Square Test to Analyze Voter Behavior}
\item Kayla Neal \\
B.S. Mathematics, Boise State University, 2018 \\
Senior thesis: \emph{The Cayley-Bacharach theorem}
\item Amanda Aydelotte \\