forked from bmschmidt/CV-pandoc-healy
-
Notifications
You must be signed in to change notification settings - Fork 4
/
curriculum_vitae.yaml
2067 lines (2050 loc) · 61.9 KB
/
curriculum_vitae.yaml
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
---
name: Richard Zach
address:
- University of Calgary
- Department of Philosophy
- 2500 University Drive NW
- Calgary, Alberta T2N 1N4
- Canada
email: rzach@ucalgary.ca
twitter: rrrichardzach
mastodonhandle: rrrichardzach
mastodoninstance: mathstodon.xyz
www: richardzach.org
tel: +1 (403) 220 3170
scholar: 79lNJr4AAAAJ
philpapers: 479
orcid: 0000-0003-1633-8324
github: rzach
bibliography: zach.bib
appointment:
-
place: 'University of Calgary, Department of Philosophy'
items:
-
item: Professor
begindate: 2009-07-01
-
item: Associate Professor
begindate: 2004-07-01
enddate: 2009-06-30
-
item: Assistant Professor
begindate: 2001-07-01
enddate: 2004-06-30
-
place: 'Université Paris 1 Panthéon-Sorbonne'
items:
-
item: 'Professeur invité'
begindate: 2023-04-10
enddate: 2023-04-23
-
place: 'Technische Universität Wien, Department of Computer Science'
items:
-
item: Visiting Researcher
begindate: 2022-01-01
enddate: 2022-06-30
-
item: Erasmus Mundus Scholar
begindate: 2009-00-00
enddate: 2009-00-00
-
item: Lecturer
begindate: 1995-03-01
enddate: 2000-06-30
-
place: 'McGill University, Department of Philosophy'
items:
-
item: Visiting Professor
begindate: 2014-10-01
enddate: 2015-06-30
-
place: "University of California, Irvine,
Department of Logic and Philosophy of Science"
items:
-
item: Visiting Associate Researcher
begindate: 2004-10-01
enddate: 2004-12-31
-
place: 'Stanford University, Department of Philosophy'
items:
-
item: Lecturer
begindate: 2001-01-01
enddate: 2001-06-30
-
place: 'University of California, Berkeley, Department of Philosophy'
items:
-
item: Graduate Student Instructor
begindate: 1996-09-01
enddate: 2000-12-31
shortappointment:
-
place: University of Calgary
item: Professor
begindate: 2009-07-01
-
place: Université Paris 1 Panthéon-Sorbonne
item: Professeur invité
begindate: 2023-04-10
enddate: 2023-04-23
-
place: Technische Universität Wien
item: Visiting Researcher
begindate: 2022-01-01
enddate: 2022-06-30
-
place: McGill University
item: Visiting Professor
begindate: 2014-10-01
enddate: 2015-06-30
-
place: University of Calgary
item: Associate Professor
begindate: 2004-07-01
enddate: 2009-06-30
-
place: "University of California, Irvine"
item: Visiting Associate Researcher
begindate: 2004-10-01
enddate: 2004-12-31
-
place: University of Calgary
item: Assistant Professor
begindate: 2001-07-01
enddate: 2004-06-30
-
place: Stanford University
item: Lecturer
begindate: 2001-01-01
enddate: 2001-06-30
-
place: Technische Universität Wien
item: Lecturer
begindate: 1995-03-01
enddate: 2009-06-30
editor:
-
item: Philosophia Mathematica
link: https://academic.oup.com/philmat
role: Editor
begindate: 2019-00-00
short: true
-
item: Stanford Encyclopedia of Philosophy
link: https://plato.stanford.edu/
role: Subject Editor, History of Logic
begindate: 2005-00-00
short: true
-
item: Journal for the History of Analytic Philosophy
link: https://jhaponline.org/
role: Founding Editor
begindate: 2010-00-00
enddate: 2020-12-01
short: true
-
item: The Review of Symbolic Logic
link: https://www.cambridge.org/core/journals/review-of-symbolic-logic
role: Founding Editor
begindate: 2007-01-01
enddate: 2013-12-31
short: true
-
item: Studia Logica
link: http://www.studialogica.org/
role: Associate Editor
begindate: 2006-00-00
enddate: 2008-00-00
short: true
-
item: Open Logic Project
link: http://openlogicproject.org/
role: Main Instigator
begindate: 2013-00-00
-
item: The Collected Works of Rudolf Carnap
link: http://rudolfcarnap.org/
role: Editor
begindate: 2006-00-00
-
item: Hilbert-Bernays Project
link: http://wirth.bplaced.net/p/hilbertbernays/
role: Advisory Board Member
begindate: 2008-00-00
-
item: Paul Bernays Project
link: http://www.phil.cmu.edu/projects/bernays/
role: Editorial Board Member
begindate: 2000-00-00
education:
-
school: University of California, Berkeley
degree: PhD
field: Logic and the Methodology of Science
date: 2001-05-01
info: |
Thesis: "Hilberts Finitism: Historical, Philosophical, and
Metamathematical Perspectives." Supervisors: Paolo Mancosu, Jack H. Silver
short: yes
-
school: University of California, Berkeley
degree: MA
field: Mathematics
date: 1997-05-01
-
school: University of California, Berkeley
degree: CPhil
field: Logic and the Methodology of Science
date: 1997-05-01
-
school: Technische Universität Wien
degree: Diplom-Ingenieur
field: Computational Logic
date: 1993-11-01
short: yes
competencies:
-
type: Areas of Specialization
items:
- 'Logic: Proof Theory, Non-classical Logics'
- 'History of Logic: Hilbert, Gödel, Carnap'
- "Philosophy of Mathematics: Hilbert's Program"
- 'History of Analytic Philosophy: Carnap'
-
type: Areas of Competence
items:
- Metaphysics, Philosophy of Language, Philosophy of Science
award:
-
title: Shoenfield Prize
agency: Association for Symbolic Logic
date: 2022
-
title: Bulletin of Symbolic Logic 25th Anniversary Prize
agency: Association for Symbolic Logic
date: 2021
-
title: Annual Fellowship
agency: Calgary Institute for the Humanities
date: 2013-2014
-
title: Annual Fellowship
agency: Calgary Institute for the Humanities
date: 2006-2007
-
title: Visiting Fellowship
agency: Department of Logic and Philosophy of Science, University of California, Irvine
date: 2004
-
title: Canadian Hunter Young Innovator Award
agency: University of Calgary
date: 2003
-
title: Mabelle McLeod Lewis Memorial Fellowship
date: 1999-2000
-
title: The Berkeley Fellowship for Graduate Study
agency: University of California, Berkeley
date: 1994-1999
-
title: Kurt Gödel Fellowship for Study Abroad
agency: Austrian Ministry of Science
date: 1994-1995
presentation:
-
title: "Hilbert's program and infinity"
host: "Logic in Philosophy Workshop: Incompleteness and Intuition"
place: University of Rijeka
date: 2024-09-11
workshop: true
-
title: "The Epsilon Calculus in Non-Classical Logics: Recent Results and Open Questions"
host: "Proof Representations: From Theory to Applications"
place: Schloss Dagstuhl
date: 2024-08-19
workshop: true
-
title: "Tutorial on Curry-Howard II"
host: Calgary Peripatetic Research Group in Logic and Category Theory
place: University of Calgary
date: 2023-11-29
local: true
-
title: "Tutorial on Curry-Howard I"
host: Calgary Peripatetic Research Group in Logic and Category Theory
place: University of Calgary
date: 2023-10-18
local: true
-
title: "Hilbert's program and infinity"
host: "Gödel and Kant on Mathematics and Physics"
place: University of Tübingen
date: 2023-10-11
workshop: true
-
title: "The Epsilon Calculus in Non-Classical Logics: Recent Results and Open Questions"
host: Workshop on Logic, Language, and Information WoLLIC 2023
place: Dalhousie University, Halifax
date: 2023-07-11
keynote: true
-
title: The Pre-History of Automated Reasoning
host: Logic Seminar
place: Wuhan University
date: 2023-05-17
invited: true
-
title: The Pre-History of Automated Reasoning
host: Logic & Theory Group
place: Vienna University of Technology
date: 2023-05-03
invited: true
-
title: "Semantics of First-order Logic: The Early Years"
host: Munich Center for Mathematical Philosophy
place: Ludwig-Maximilians-Universität, Munich
date: 2023-11-15
invited: true
-
title: The Pre-History of Automated Reasoning
host: PHILMATH Seminar
place: Institut d'Histoire et Philosophie des Sciences et Techniques, CNRS/Université Paris 1 Panthéon-Sorbonne
date: 2023-04-17
invited: true
-
title: The Automation of Reasoning
host: The Formal Turn in 20th Century Thought
place: University of Vienna
date: 2023-02-16
workshop: true
-
title: Logical Archeology of Automated Theorem Proving
host: World Logic Day in Alberta and British Columbia
place: Online
date: 2023-01-14
local: true
-
title: "Hilbert's program and infinity"
host: Online Colloquium
place: Canadian Society for the History and Philosophy of Mathematics
date: 2022-10-28
workshop: true
-
title: "Semantics of First-order Logic: The Early Years"
host: Logic Seminar (online)
place: Sun Yat-sen University, Guangzhou
date: 2022-11-15
invited: true
-
title: Prefixed Tableaux for Simply Dependent Multimodal Logics
host: Logic & Theory Group
place: Vienna University of Technology
date: 2022-06-22
invited: true
-
title: "Hilbert's Program and Infinity"
host: Logic Café
place: University of Vienna
date: 2022-06-10
invited: true
-
title: "Hilbert's Program and Infinity"
host: Séminaire «Infini mathématique»
place: Université Paris I
date: 2022-03-10
invited: true
-
title: 'Semantics of First-order Logic: The Early Years'
host: PHILMATH Seminar
place: Institut d'Histoire et Philosophie des Sciences et Techniques, CNRS/Université Paris 1 Panthéon-Sorbonne
date: 2022-03-07
invited: true
-
title: 'Semantics of First-order Logic: The Early Years'
host: Logic Seminar
place: University of Connecticut, Storrs
date: 2021-11-12
invited: true
-
title: 'Logic and Computation in the 1920s and 30s'
host: Philosophy of Computation and Statistics Workshop
place: University of Pennsylvania
date: 2021-07-23
invited: true
-
title: The Significance of the Curry-Howard Isomorphism
host: Eastern Division Meeting of the American Philosophical Association
place: New York
date: 2019-01-08
keynote: true
-
title: The Philosophical Significance of the Curry-Howard Isomorphism
host: 41st International Wittgenstein Symposium
place: Kirchberg am Wechsel, Austria
date: 2018-08-06
workshop: true
-
title: "OER: What, Why, When and How"
host: Taylor Institute for Teaching and Learning
place: Calgary
date: 2018-03-07
local: true
-
title: The Origins of Modern First-order Logic
place: Carnegie Mellon University
host: Philosophy Colloquium
date: 2017-11-16
invited: true
-
title: The Open Logic Project
place: Seattle
host: Spring Meeting of the Association for Symbolic Logic
note: Special Session on Diversity in Logic Education
date: 2017-04-13
workshop: true
-
title: The Decision Problem and Logical Metatheory
place: The Ohio State University
host: SoMLaFS Colloquium
date: 2017-03-31
invited: true
-
title: General Rules for Sequent Calculus and Natural Deduction
place: The Ohio State University
host: OSU/UConn Workshop on Truth
date: 2017-03-30
workshop: true
-
title: Semantics and Proof Theory of the Epsilon Calculus
place: Indian Institute of Technology, Kanpur
host: Indian Conference on Logic and its Applications
date: 2017-01-06
keynote: true
-
title: The Fruitfulness of Philosophy of Mathematics
place: Indian Institute of Engineering Science and Technology, Shibpur
host: Workshop on Mathematics and Culture
date: 2017-01-03
workshop: true
-
title: "Substitution, Consequence, and Proof, or: How Many Consequence Relations Can One Logic Have?"
place: University of British Columbia, Okanagan
host: Department of Philosophy
date: 2016-11-25
invited: true
-
title: 'Comments on Patricia Blanchette: Models from Geometry to Logic'
host: 50th Chapel Hill Philosophy Colloquium
place: University of North Carolina, Chapel Hill
date: 2016-10-23
comments: true
-
title: Steinhardt on Variables
host: Society for the Study of the History of Analytic Philosophy Annual Meeting
place: Denver
date: 2016-06-18
conference: true
-
title: The Decision Problem and the Model Theory of First-order Logic
host: Canadian Society for History and Philosophy of Mathematics
note: Special Session on Logic and Mathematics in the 19th and 20th Centuries in Honour of Aldo Antonelli
place: Calgary
date: 2016-05-29
conference: true
-
title: General Natural Deduction Rules and General Lambda Calculi
place: University of Connecticut, Storrs
host: Annual Meeting of the Association for Symbolic Logic
date: 2016-05-24
conference: true
-
title: Rudolf Carnap and the Logic of Tolerance
place: University of Calgary
host: Calgary Institute for the Humanities
date: 2016-02-23
local: true
-
title: Substitution, Consequence, and Proof
host: Society for Exact Philosophy
place: Hamilton, ON
date: 2015-05-23
conference: true
-
title: Derivation and Consequence
place: McGill University
host: Philosophy Workshop
date: 2015-04-10
invited: true
-
title: The Decision Problem and Logical Metatheory
place: University of California, Berkeley
host: Townsend Center Working Group in History and Philosophy of Logic, Mathematics, and Science
date: 2014-11-05
invited: true
-
title: Carnap and Logic in the 1920s and 1930s
host: Minnesota Center for Philosophy of Science
place: University of Minnesota
date: 2014-04-25
invited: true
-
title: The Decision Problem and Logical Metatheory
host: Foundations Interest Group, Department of Philosophy
place: University of Minnesota
date: 2014-04-24
invited: true
-
title: Carnap on Models
host: Spring Meeting of the Association for Symbolic Logic, Symposium on Metalogic and Early Analytic Philosophy
place: San Diego
date: 2014-04-017
keynote: true
-
title: The Epsilon Calculus and Non-Classical Logics
host: 'Nonclassical Proofs: Theory, Applications, and Tools'
place: Vienna
date: 2014-07-20
conference: true
-
title: The Place of Logic in Computer Science Education
note: Panel discussion with Byron Cook, Alexander Leitsch, Prakash Panangaden, Nicole Schweikardt, and Helmut Veith
host: Logic Colloquium
place: Vienna
date: 2014-07-15
conference: true
-
title: Carnap and Logic in the 1920s and 1930s
host: Society for the Study of the History of Analytic Philosophy Annual Meeting
place: Montréal
date: 2014-05-24
conference: true
-
title: Carnap as a Logician
host: Carnap on Logic Conference
place: Munich Center for Mathematical Philosophy
date: 2013-07-06
workshop: true
-
title: "The Epsilon Calculus: An Undervalued Logical Formalism"
host: Annual Meeting of the Society for Exact Philosophy
place: Montréal
date: 2013-05-26
keynote: true
-
title: Carnap and Logic
host: Workshop on Formal Epistemology and the Legacy of Logical Empiricism
place: University of Texas, Austin
workshop: true
date: 2013-04-27
-
title: The Epsilon Calculus and Non-Classical Logics
host: Winter Meeting of the Association for Symbolic Logic
place: New Orleans
date: 2013-02-21
conference: true
-
title: The Decision Problem and the Development of Metalogic
host: Logic and Philosophy of Science Group
place: University of Toronto
date: 2012-03-29
invited: true
-
title: Carnap, Tolerance, and the Foundational Debate in Mathematics
host: International Congress on Logic, Philosophy, and Methodology of Science
place: Nancy, France
date: 2011-07-22
conference: true
-
title: Gödel's First Incompleteness Theorem and Mathematical Instrumentalism
place: Keio University, Tokyo
date: 2011-00-00
invited: true
-
title: Proof Interpretations and the Constructive Content of Mathematical Theories
place: Kyoto University
date: 2011-00-00
invited: true
-
title: The Epsilon Calculus
place: Keio University, Tokyo
date: 2011-00-00
invited: true
-
title: Ayer and the Vienna Circle
host: Western Canadian Philosophy Association
place: University of Calgary
date: 2010-10-29
conference: true
-
title: "'Principia Mathematica' and the development of logic"
host: PM@100
place: McMaster University, Hamilton
workshop: true
date: 2010-05-023
-
title: The Decision Problem and the Development of Metalogic
host: Department of Philosophy
place: McGill University
date: 2009-12-04
invited: true
-
title: Proof Interpretations and the Constructive Content of Mathematical Theories
host: Wissenschaftstheoretisches Kolloquium
place: University of Vienna, Austria
date: 2009-05-07
invited: true
-
title: Bernays and the Decision Problem in Hilbert's School
host: Bernaysfest
place: Carnegie Mellon University
date: 2008-11-15
workshop: true
-
title: Carnap, Logic, and Analytic Philosophy
host: 200 Years of Analytic Philosophy
place: University of Latvia, Rīga
date: 2008-08-29
keynote: true
-
title: The Decision Problem and the Development of Metalogic
host: Department of Philosophy
place: Utrecht University
date: 2008-06-25
invited: true
-
title: Carnap's Logic in the 1930s
host: Annual Meeting of the Association for Symbolic Logic
note: Special Session on Logic and Logical Empiricism
place: University of California, Irvine
date: 2008-03-28
workshop: true
-
title: 'Proof Construction, and Computation: Interactions between Philosophy of Mathematics and Mathematical Foundations'
place: Scuola Normale Superiore, Pisa
date: 2008-03-04
invited: true
-
title: Analytic Systems for the $\varepsilon$-Calculus
host: Analytic Systems/LPAR 2007
place: Yerevan, Armenia
date: 2007-10-15
workshop: true
-
title: The Decision Problem in the 1920s
host: Moscow-Vienna Workshop on Logic and Computation
place: Technical University Vienna, Vienna, Austria
date: 2007-07-02
workshop: true
-
title: The decision problem and the development of metalogic
host: Annual Meeting of the Association for Symbolic Logic
place: University of Florida, Gainesville, FL
date: 2007-03-012
keynote: true
-
title: Algorithms and decision problems in Hilbert's school
host: Hilbert Workshop
place: Kyoto University
date: 2006-11-12
workshop: true
-
title: Vagueness and Fuzzy Logics
host: 'Uncertainty: Reasoning about Probability and Vagueness'
place: Prague
date: 2006-12-06
workshop: true
-
title: Kurt Gödel and computability theory
host: 'Computability in Europe CiE 2006: Logical Approaches to Computational Barriers'
place: Swansea, Wales
date: 2006-07-05
keynote: true
-
title: The Epsilon Calculus
host: Logic Group
place: University of Melbourne
date: 2006-05-26
invited: true
-
title: Logic and Cagueness
host: Department of Philosophy
place: University of Melbourne
date: 2006-05-25
invited: true
-
title: Gödel's First Incompleteness Theorem and Mathematical Instrumentalism
host: Gödel Seminar
place: University of Notre Dame
date: 2006-05-30
invited: true
-
title: Carnap between Logicism and Formalism
host: History of Philosophy of Science 2006
place: Paris
date: 2006-06-16
conference: true
-
title: Complexity of Elimination Procedures in the Epsilon Calculus
host: Logic Colloquium
place: Athens, Greece
date: 2005-08-02
conference: true
-
title: Algebraic Semantics for Logics of Vagueness
host: Society for Exact Philosophy
place: University of Toronto
date: 2005-05-21
conference: true
-
title: Logic Instruction and Philosophy Graduate Training
note: Panel discussion with Andrew Arana, Michael Glanzberg, Brian Weatherson, and Ted Sider
host: Spring Meeting of the Association for Symbolic Logic
place: San Francisco
date: 2005-03-26
conference: true
-
title: Gödel's First Incompleteness Theorem and Mathematical Instrumentalism
host: 'Truth and Proof: Kurt Gödel and the Foundations of Mathematics'
place: University of Edinburgh
date: 2006-03-25
workshop: true
-
title: Algebraic Semantics for Logics of Vagueness
host: Kurt Gödel Society
place: University of Technology, Vienna
date: 2005-08-10
invited: true
-
title: What Should a Logic of Vagueness Be and Do?
host: Philosophy Department
place: Stanford University
date: 2005-01-28
invited: true
-
title: How to Argue for and against a Logic of Vagueness
host: Logic and Philosophy of Science Colloquium
place: University of California, Irvine
date: 2004-12-10
invited: true
-
title: Vagueness and Infinitely Many Truth Values
place: University of California, Berkeley
host: Townsend Center Working Group in History and Philosophy of Logic, Mathematics, and Science
date: 2004-11-03
invited: true
-
title: Gödel's First Incompleteness Theorem and Detlefsen's Hilbertian Instrumentalism
host: Logic Colloquium
place: Turin, Italy
date: 2004-00-00
conference: true
-
title: Axiomatizability of First-Order Gödel Logics
host: Logic Colloquium
place: Turin, Italy
date: 2004-00-00
conference: true
-
title: Finite-Valued Approximations of Propositional Logics
host: Foundational Methods in Computer Science
place: Kananaskis Field Station, University of Calgary
date: 2004-06-04
conference: true
-
title: 'Semantics for Vagueness vs. Logics for Vagueness: The Case of Fuzzy Logics'
host: The Challenge of Semantics (European Science Foundation Exploratory Workshop)
place: Vienna
date: 2004-07-12
workshop: true
-
title: Gödel's First Incompleteness Theorem and Mathematical Instrumentalism
place: University of Lethbridge
host: Department of Philosophy
date: 2004-11-23
invited: true
-
title: Gödel's First Incompleteness Theorem and Mathematical Instrumentalism
host: Midwest Philosophy of Mathematics Workshop
place: University of Notre Dame
date: 2003-11-22
conference: true
-
title: Characterization of the Axiomatizable Prenex Fragments of First-Order Gödel Logics
host: 33rd International Symposium on Multiple Valued Logic
place: Tokyo
date: 2003-05-30
conference: true
-
title: The Epsilon Calculus
host: Kurt Gödel Colloquium/Conference on Computer Science Logic CSL'03
place: University of Technology Vienna
date: 2003-08-26
note: tutorial, jointly with Georg Moser
keynote: true
-
title: Completeness and Decidability in the Context of Hilbert's Philosophy
place: University of Alberta
host: Department of Philosophy
date: 2003-01-28
invited: true
-
title: The Early History of the Epsilon Calculus
place: University of California, Berkeley
host: Townsend Center Working Group in History and Philosophy of Logic, Mathematics, and Science
date: 2002-09-04
invited: true
-
title: Logic and Metalogic in Hilbert's School
place: Universitat de Barcelona
host: Seminari de Lògica
date: 2002-05-28
invited: true
-
title: Hilbert's `Verunglückter Beweis' and the Epsilon Theorem
host: Spring Meeting of the Association for Symbolic Logic
place: Seattle
date: 2002-03-28
conference: true
-
title: Hilbert's Program and the Foundations of Mathematics
place: University of Calgary
host: Department of Mathematics
date: 2002-03-07
local: true
-
title: Hilbert's Epsilon Calculus and Epsilon-Substitution Method
host: Hilbert Workshop, Japanese Society for the Philosophy of Science
place: Keio University, Tokyo
date: 2002-01-13
workshop: true
-
title: Quantified Propositional Intuitionistic Logic on Trees is Decidable
host: Logic Colloquium
place: Vienna
date: 2001-08-08
conference: true
-
title: Hilbert's Project of Consistency Proofs in the 1920s
host: "Logic and the Foundations of the Exact Sciences: Hilbert's Heritage"
place: Berne, Switzerland
date: 2001-06-30
workshop: true
-
title: "Hilbert's 'Ansatz' for the Epsilon-Substitution Method and Ackermann's Dissertation"
host: Spring Meeting of the Association for Symbolic Logic
note: Special Session on Proof Theory and Constructivism
place: Minneapolis
date: 2001-05-04
workshop: true
-
title: The Epistemology of Mathematics and Hilbert's Finitism
place: University of Calgary
host: Department of Philosophy
date: 2001-03-20
invited: true
-
title: Epsilon Calculus and Consistency Proofs in Hilbert's Program
host: Mathematical Logic Seminar
place: Stanford University
date: 2001-03-13
invited: true
-
title: Epsilon Calculus and Consistency Proofs in Hilbert's Program
host: Philosophy of Mathematics Workshop
place: University of California, Los Angeles
date: 2001-03-05
workshop: true
-
title: Instrumentalism in Mathematics
place: University of South Florida, Tampa
host: Department of Philosophy
date: 2001-02-06
invited: true
-
title: Epsilon Calculus and Consistency Proofs in Hilbert's Program
place: University of California, Irvine
host: Department of Logic and Philosophy of Science
date: 2001-01-26
invited: true
-
title: The Syntax-Semantics Distinction and Hilbert's `No Ignorabimus'
host: History of Philosophy of Science
place: Vienna
date: 2000-07-09
conference: true
-
title: The Practice of Finitism
host: Hilbert Workshop
place: Institut d'Histoire et Philosophie des Sciences et Techniques, CNRS/Université Paris I
date: 2000-05-24
workshop: true
-
title: The Practice of Finitism
host: History of Logic
place: University of Helsinki
date: 2000-06-12
workshop: true
-
title: Finitism and Mathematical Intuition
place: Oxford University
host: Department of Philosophy
date: 2000-05-018
invited: true
-
title: Finitism and Mathematical Intuition
place: University of Chicago
host: Department of Philosophy
date: 2000-02-08
invited: true
-
title: Finitism and Mathematical Intuition
place: Stanford University
host: Department of Philosophy
date: 2000-01-27
invited: true
-
title: The Reach of Finitism
host: 'Collegium Logicum: Proof Theory'
place: Vienna
date: 1999-11-20
workshop: true
-
title: The Historical Significance of Consistency Proofs
host: The Development of the Foundations of Mathematics in the 1920s and 30s
place: Institute Vienna Circle, Vienna
date: 1999-06-02
workshop: true
-
title: 'Hilbert, Bernays, and some Fundamental Advances in Logic, 1918–1923'
host: Spring Meeting of the Association for Symbolic Logic
place: New Orleans
date: 1999-05-07
conference: true
-
title: Infinite-valued Gödel Logics
host: Annual Meeting of the Association for Symbolic Logic
place: Unversity of California, San Diego
date: 1999-03-22
conference: true
-
title: 'Completeness before Post: Hilbert and Bernays on Propositional Logic, 1917--18'
place: Stanford University
host: Logic Lunch
date: 1999-02-12
invited: true
-
title: Bernays' Early Contributions to Logic
host: The Development of Modern Logic
place: University of Helsinki
date: 1998-06-06
workshop: true
-
title: The Debate between Kreisel and Tait on Finitism
place: Universität Erlangen-Nürnberg
host: Colloquium Logico-Philosophicum
date: 1998-04-29
invited: true
-
title: Hilbert's Finitist Numbers
host: 1997 Stanford--Berkeley Philosophy Conference
place: Stanford University
date: 1997-04-26
conference: true
-
title: Finitism
host: Kurt Gödel Society
place: Vienna
date: 1997-00-00
invited: true
-
title: "Generalization of Theorems and Proofs: Kreisel's Conjecture for Algebraic Theories"
place: Stanford University
host: Logic Lunch
date: 1997-00-00
invited: true
-
title: Uniform Deduction Systems for Finite-valued First-Order Logics
host: Eighth European Summer School in Language, Logic, and Information
place: Prague
date: 1996-08-00
workshop: true
-
title: A Software Package for Axiomatizing Finite-Valued First-Order Logics
host: Seventh European Summer School in Language, Logic, and Information
place: Barcelona
date: 1995-08-00
workshop: true
-
title: Axiomatizability Issues in Temporal and Infinite-Valued First-Order Logics
place: Université Paris 7 Denis Diderot
host: Equipe de Logique
date: 1995-00-00
invited: true
-