-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathreferences.bib
More file actions
6279 lines (5789 loc) · 217 KB
/
Copy pathreferences.bib
File metadata and controls
6279 lines (5789 loc) · 217 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
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
# To normalize:
# bibtool --preserve.key.case=on --preserve.keys=on --pass.comments=on --print.use.tab=off -s -i docs/references.bib -o docs/references.bib
# WARNING: Please only use alphanumeric characters, '-', '_', and ':' for the key of bibliography items!
# Currently doc-gen does not support characters outside them and will silently errors, causing incomplete reference pages.
# https://www.zbmath.org/ and https://mathscinet.ams.org/mathscinet
# (or the free tool https://mathscinet.ams.org/mrlookup)
# are good sources of complete bibtex entries for mathematics
# To link to an entry in `references.bib`, use the following formats:
# [Author, *Title* (optional location)][bibkey]
@Book{ abramsky_gabbay_maibaum_1994,
editor = {Abramsky, S. and Gabbay, D. M. and Maibaum, T. S. E.},
title = {Handbook of logic in computer science. {Vol}. 3:
{Semantic} structures},
isbn = {0-19-853762-X},
year = {1994},
publisher = {Oxford: Clarendon Press},
language = {English},
keywords = {68-00,68Q55},
zbmath = {783754},
zbl = {0829.68111}
}
@Book{ Adamek_Rosicky_1994,
author = {Adámek, Jiří and Rosický, Jiří},
title = {Locally presentable and accessible categories},
series = {London Mathematical Society Lecture Note Series},
volume = {189},
publisher = {Cambridge University Press, Cambridge},
year = {1994},
pages = {xiv+316},
isbn = {0-521-42261-2},
mrclass = {18Axx (18-02)},
mrnumber = {1294136},
doi = {10.1017/CBO9780511600579},
url = {https://doi.org/10.1017/CBO9780511600579}
}
@Book{ Adamek_Rosicky_Vitale_2010,
place = {Cambridge},
series = {Cambridge Tracts in Mathematics},
title = {Algebraic Theories: A Categorical Introduction to General
Algebra},
publisher = {Cambridge University Press},
author = {Adámek, J. and Rosický, J. and Vitale, E. M.},
year = {2010},
collection = {Cambridge Tracts in Mathematics}
}
@InProceedings{ adhesive2004,
author = {S. Lack and P. Soboci{\'n}ski},
title = {Adhesive categories},
booktitle = {Foundations of Software Science and Computation
Structures, {FoSSaCS '04}},
series = {LNCS},
volume = {2987},
pages = {273--288},
publisher = {Springer},
year = {2004},
url = {https://www.ioc.ee/~pawel/papers/adhesive.pdf}
}
@Article{ ahrens2017,
author = {Benedikt Ahrens and Peter LeFanu Lumsdaine},
year = {2019},
title = {Displayed Categories},
journal = {Logical Methods in Computer Science},
volume = {15},
issue = {1},
doi = {10.23638/LMCS-15(1:20)2019}
}
@Book{ aigner1997,
author = {Aigner, Martin},
title = {Combinatorial theory},
series = {Classics in Mathematics},
note = {Reprint of the 1979 original},
publisher = {Springer-Verlag, Berlin},
year = {1997},
pages = {viii+483},
isbn = {3-540-61787-6},
mrclass = {05-01 (06-01)},
mrnumber = {1434477},
doi = {10.1007/978-3-642-59101-3},
url = {https://doi.org/10.1007/978-3-642-59101-3}
}
@Book{ aigner1999proofs,
author = {Aigner, Martin and Ziegler, G{\"u}nter M.},
title = {Proofs from {THE} {BOOK}},
isbn = {3-540-63698-6},
year = {1998},
publisher = {Berlin: Springer},
language = {English},
keywords = {00A05,11-01,05-01,52-01,26-01},
zbmath = {1188564},
zbl = {0905.00001}
}
@Misc{ aignerhorev2012infinite,
author = {Elad Aigner-Horev and Johannes Carmesin and Jan-Oliver
Fröhlich},
title = {Infinite matroid union},
year = {2012},
eprint = {1111.0602},
archiveprefix = {arXiv}
}
@Book{ Albiac_Kalton_2016,
author = {Albiac, Fernando. and Kalton, Nigel J.},
title = {Topics in Banach Space Theory},
edition = {2nd ed. 2016.},
isbn = {3-319-31557-9},
keywords = {Functional analysis. ; Functional Analysis.},
language = {eng},
publisher = {Springer International Publishing},
series = {Graduate Texts in Mathematics, 233},
year = {2016}
}
@Article{ alfseneffros1972,
author = {Erik M. {Alfsen} and Edward G. {Effros}},
title = {{Structure in real Banach spaces. I and II}},
fjournal = {{Annals of Mathematics. Second Series}},
journal = {{Ann. Math. (2)}},
issn = {0003-486X},
volume = {96},
pages = {98--173},
year = {1972},
publisher = {Princeton University, Mathematics Department, Princeton,
NJ},
language = {English},
doi = {10.2307/1970895},
msc2010 = {46L05 46B10 46K05 46E15 46B99 46A40},
zbl = {0248.46019}
}
@Book{ alfsenshultz2003,
author = {Erik M. {Alfsen} and Frederic W. {Shultz}},
title = {{Geometry of state spaces of operator algebras}},
isbn = {0-8176-4319-2},
pages = {xiii + 467},
year = {2003},
publisher = {Boston, MA: Birkh\"auser},
language = {English},
msc2010 = {46-02 46L05 46L10 46L70 46L30 17C65},
zbl = {1042.46001}
}
@Article{ Alon_1999,
author = {Alon, Noga},
title = {Combinatorial Nullstellensatz},
volume = {8},
journal = {Combinatorics, Probability and Computing},
year = {1999},
number = {1–2},
pages = {7–29},
issn = {0963-5483},
doi = {10.1017/S0963548398003411}
}
@Book{ altman2021term,
title = {A Term of Commutative Algebra},
author = {Altman, A. and Kleiman, S.},
isbn = {9780988557215},
year = {2021},
publisher = {Worldwide Center of Mathematics}
}
@Book{ aluffi2016,
title = {Algebra: Chapter 0},
author = {Aluffi, Paolo},
series = {Graduate Studies in Mathematics},
volume = {104},
year = {2016},
publisher = {American Mathematical Society},
edition = {Reprinted with corrections by the American Mathematical
Society}
}
@Article{ andrasfaiErdosSos1974,
author = {Andrásfai, B. and Erdős, P. and Sós, V. T.},
year = {1974},
month = {5},
pages = {205--218},
title = {On the connection between chromatic number, maximal
clique, and minimal degree of a graph},
volume = {8},
issue = {3},
journal = {Discrete Mathematics},
doi = {10.1016/0012-365X(74)90133-2},
url = {https://doi.org/10.1016/0012-365X(74)90133-2}
}
@Book{ atiyah-macdonald,
author = {Atiyah, M. F. and Macdonald, I. G.},
title = {Introduction to commutative algebra},
publisher = {Addison-Wesley Publishing Co., Reading, Mass.-London-Don
Mills, Ont.},
year = {1969},
pages = {ix+128},
mrclass = {13.00},
mrnumber = {0242802},
mrreviewer = {J. A. Johnson}
}
@Article{ aubrunEntangleabilityCones2021,
author = {Aubrun, Guillaume and Lami, Ludovico and Palazuelos,
Carlos and Pl\'{a}vala, Martin},
title = {Entangleability of cones},
journal = {Geometric and Functional Analysis},
volume = {31},
number = {2},
pages = {181--205},
year = {2021},
doi = {10.1007/s00039-021-00565-5},
eprint = {1911.09663},
eprinttype = {arXiv},
url = {https://link.springer.com/10.1007/s00039-021-00565-5}
}
@InProceedings{ avigad-carneiro-hudon2019,
author = {Jeremy Avigad and Mario M. Carneiro and Simon Hudon},
editor = {John Harrison and John O'Leary and Andrew Tolmach},
title = {Data Types as Quotients of Polynomial Functors},
booktitle = {10th International Conference on Interactive Theorem
Proving, {ITP} 2019, September 9-12, 2019, Portland, OR,
{USA}},
series = {LIPIcs},
volume = {141},
pages = {6:1--6:19},
publisher = {Schloss Dagstuhl - Leibniz-Zentrum f{\"{u}}r Informatik},
year = {2019},
url = {https://doi.org/10.4230/LIPIcs.ITP.2019.6},
doi = {10.4230/LIPIcs.ITP.2019.6},
timestamp = {Fri, 27 Sep 2019 15:57:06 +0200},
biburl = {https://dblp.org/rec/conf/itp/AvigadCH19.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@Misc{ avigad_moura_kong-2017,
author = {Jeremy Avigad and Leonardo de Moura and Soonho Kong},
title = {{T}heorem {P}roving in {L}ean},
year = {2017},
howpublished = {},
url = {https://leanprover.github.io/theorem_proving_in_lean/}
}
@Book{ axler2024,
author = {Sheldon Axler},
title = {Linear algebra done right. 4th ed.},
fjournal = {Undergraduate Texts in Mathematics},
journal = {Undergraduate Texts Math.},
issn = {0172-6056; 2197-5604/e},
edition = {4th ed.},
isbn = {978-3-031-41025-3/hbk, 978-3-031-41026-0/ebook},
pages = {xvii + 390},
year = {2024},
publisher = {Springer}
}
@Manual{ banasiak,
author = {Banasiak},
title = {Banach Lattices in Applications},
organization = {University of Pretoria},
address = {Pretoria, South Africa}
}
@Article{ barnes1967,
author = {Barnes, Donald W.},
title = {On {C}artan subalgebras of {L}ie algebras},
journal = {Math. Z.},
fjournal = {Mathematische Zeitschrift},
volume = {101},
year = {1967},
pages = {350--355},
issn = {0025-5874},
mrclass = {17.30},
mrnumber = {220785},
mrreviewer = {R. Steinberg},
doi = {10.1007/BF01109800},
url = {https://doi.org/10.1007/BF01109800}
}
@Article{ barr-kennison-robert-2019,
author = {Barr, Michael and Kennison, John F. and Raphael, Robert},
title = {Contractible simplicial objects},
journal = {Comment. Math. Univ. Carolin.},
fjournal = {Commentationes Mathematicae Universitatis Carolinae},
volume = {60},
year = {2019},
number = {4},
pages = {473--495},
issn = {0010-2628,1213-7243},
mrclass = {18N50 (55U10)},
mrnumber = {4061357}
}
@Misc{ barwickhaine2019,
title = {Pyknotic objects, I. Basic notions},
author = {Clark Barwick and Peter Haine},
year = {2019},
eprint = {1904.09966},
archiveprefix = {arXiv},
primaryclass = {math.AG}
}
@Book{ bbd-1982,
author = {Beilinson, A. A. and Bernstein, J. and Deligne, P. and
Gabber, O.},
title = {Analyse et topologie sur les espaces singuliers. {I :
Faisceaux pervers}},
series = {Ast\'{e}risque},
volume = {100},
booktitle = {Proceedings of the colloquium held at {L}uminy, {J}uly
6--11, 1981},
publisher = {Soci\'{e}t\'{e} Math\'{e}matique de France, Paris},
year = {2018},
pages = {172},
mrclass = {32-06 (14-06)},
mrnumber = {751965}
}
@Book{ beals2004,
author = {Richard Beals},
title = {Analysis. An introduction},
publisher = {Cambridge University Press},
isbn = {0521600472},
year = {2004}
}
@Book{ Becker-Weispfenning1993,
address = {New York, NY},
series = {Graduate Texts in Mathematics},
title = {Gröbner Bases},
volume = {141},
isbn = {978-1-4612-6944-1},
url = {http://link.springer.com/10.1007/978-1-4612-0913-3},
doi = {10.1007/978-1-4612-0913-3},
publisher = {Springer New York},
author = {Becker, Thomas and Weispfenning, Volker},
year = {1993},
collection = {Graduate Texts in Mathematics},
language = {en}
}
@Book{ behrends1979,
author = {Ehrhard {Behrends}},
title = {{M-structure and the Banach-Stone theorem}},
fjournal = {{Lecture Notes in Mathematics}},
journal = {{Lect. Notes Math.}},
issn = {0075-8434},
volume = {736},
year = {1979},
publisher = {Springer, Cham},
language = {English},
msc2010 = {46B20 46-02 46E40 46A40},
zbl = {0436.46013}
}
@Book{ bensonfarb1993,
author = {Benson Farb, R. Keith Dennis},
series = {Graduate Texts in Mathematics},
title = {Noncommutative Algebra},
year = {1993},
publisher = {Springer},
language = {English},
volume = {144},
url = {https://link.springer.com/book/10.1007/978-1-4612-0889-1}
}
@Article{ bergelson1985,
author = {Bergelson, Vitaly},
title = {Sets of Recurrence of Zm-Actions and Properties of Sets of
Differences in Zm},
journal = {Journal of the London Mathematical Society},
volume = {s2-31},
number = {2},
pages = {295-304},
doi = {https://doi.org/10.1112/jlms/s2-31.2.295},
url = {https://londmathsoc.onlinelibrary.wiley.com/doi/abs/10.1112/jlms/s2-31.2.295},
eprint = {https://londmathsoc.onlinelibrary.wiley.com/doi/pdf/10.1112/jlms/s2-31.2.295},
year = {1985}
}
@Book{ berger1987,
author = {Marcel Berger},
title = {Geometry I},
publisher = {Springer Berlin},
year = 1987,
issn = {0172-5939},
pages = {XIV, 432},
series = {Universitext},
address = {Heidelberg},
edition = 1
}
@Book{ bergh_lofstrom_1976,
author = {Bergh, Jöran and Löfström, Jörgen},
title = {Interpolation Spaces},
publisher = {Springer Berlin},
year = 1976,
issn = {0072-7830}
}
@Article{ bernstein1912,
author = {Bernstein, S.},
year = {1912},
title = {Démonstration du théorème de Weierstrass fondée sur le
calcul des probabilités},
journal = {Comm. Kharkov Math. Soc.},
volume = {13},
number = {1–2}
}
@Book{ Berthelot-1974,
author = {Berthelot, Pierre},
year = {1974},
series = {Lecture {{Notes}} in {{Mathematics}}},
number = {407},
publisher = {sv},
keywords = {nosource},
file = {/Users/chambert/Zotero/storage/WHF5R9LQ/Berthelot - 1974 -
Cohomologie cristalline des schémas de caractérist.djvu},
title = {Cohomologie Cristalline Des Schémas de Caractéristique
{$p>0$}}
}
@Book{ BerthelotOgus-1978,
title = {Notes on Crystalline Cohomology},
author = {Berthelot, Pierre and Ogus, Arthur},
year = {1978},
series = {Math. {{Notes}}},
number = {21},
publisher = {pup},
keywords = {nosource},
file = {/Users/chambert/Zotero/storage/I3FNJEDB/Berthelot et Ogus
- 1978 - Notes on crystalline cohomology.djvu}
}
@InProceedings{ beylin1996,
author = "Beylin, Ilya and Dybjer, Peter",
editor = "Berardi, Stefano and Coppo, Mario",
title = "Extracting a proof of coherence for monoidal categories
from a proof of normalization for monoids",
booktitle = "Types for Proofs and Programs",
year = "1996",
publisher = "Springer Berlin Heidelberg",
address = "Berlin, Heidelberg",
pages = "47--61",
abstract = "This paper studies the problem of coherence in category
theory from a type-theoretic viewpoint. We first show how a
Curry-Howard interpretation of a formal proof of
normalization for monoids almost directly yields a
coherence proof for monoidal categories. Then we formalize
this coherence proof in intensional intuitionistic type
theory and show how it relies on explicit reasoning about
proof objects for intensional equality. This formalization
has been checked in the proof assistant ALF.",
isbn = "978-3-540-70722-6"
}
@Book{ billingsley1999,
author = {Billingsley, Patrick},
title = {Convergence of probability measures},
series = {Wiley Series in Probability and Statistics: Probability
and Statistics},
edition = {Second},
note = {A Wiley-Interscience Publication},
publisher = {John Wiley \& Sons, Inc., New York},
year = {1999},
pages = {x+277},
isbn = {0-471-19745-9},
mrclass = {60B10 (28A33 60F17)},
mrnumber = {1700749},
doi = {10.1002/9780470316962},
url = {https://doi.org/10.1002/9780470316962}
}
@Article{ bird2011,
author = {Bird, Richard S.},
title = {A simple division-free algorithm for computing
determinants},
journal = {Information Processing Letters},
volume = {111},
pages = {1072--1074},
year = {2011},
doi = {10.1016/j.ipl.2011.08.006},
url = {https://doi.org/10.1016/j.ipl.2011.08.006}
}
@Book{ birdwadler,
author = {Richard Bird and Philip Wadler},
year = {1988},
title = {Introduction to Functional Programming},
publisher = {Prentice Hall},
address = {New York},
isbn = {978-0-13-484189-2}
}
@Article{ birkhoff1937,
author = {Birkhoff, Garrett},
title = {Rings of sets},
volume = {3},
journal = {Duke Mathematical Journal},
number = {3},
publisher = {Duke University Press},
pages = {443--454},
year = {1937},
doi = {10.1215/S0012-7094-37-00334-X},
url = {https://doi.org/10.1215/S0012-7094-37-00334-X}
}
@Book{ birkhoff1940,
author = {Birkhoff, Garrett},
title = {Lattice Theory},
edition = {First},
publisher = {American Mathematical Society},
year = {1940},
volume = {25}
}
@Article{ birkhoff1942,
author = {Birkhoff, Garrett},
title = {Lattice-Ordered groups},
journal = {Ann. of Math. (2)},
fjournal = {Annals of Mathematics. Second Series},
volume = {43},
year = {1942},
pages = {298--331},
issn = {0003-486X},
mrclass = {20.0X},
mrnumber = {6550},
mrreviewer = {H. Wallman},
doi = {10.2307/1968871},
url = {https://doi.org/10.2307/1968871}
}
@Book{ bjorner2005,
author = {Bj\"{o}rner, Anders and Brenti, Francesco},
title = {Combinatorics of {C}oxeter groups},
series = {Graduate Texts in Mathematics},
volume = {231},
publisher = {Springer, New York},
year = {2005},
pages = {xiv+363},
isbn = {978-3540-442387; 3-540-44238-3},
mrclass = {05-01 (05E15 20F55)},
mrnumber = {2133266},
mrreviewer = {Jian-yi\ Shi}
}
@Article{ blanchette2015,
author = {Blanchette, Jasmin Christian and Popescu, Andrei and
Traytel, Dmitriy},
title = {Foundational extensible corecursion: a proof assistant
perspective},
year = {2015},
issue_date = {September 2015},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
volume = {50},
number = {9},
issn = {0362-1340},
url = {https://doi.org/10.1145/2858949.2784732},
doi = {10.1145/2858949.2784732},
abstract = {This paper presents a formalized framework for defining
corecursive functions safely in a total setting, based on
corecursion up-to and relational parametricity. The end
product is a general corecursor that allows corecursive
(and even recursive) calls under "friendly" operations,
including constructors. Friendly corecursive functions can
be registered as such, thereby increasing the corecursor's
expressiveness. The metatheory is formalized in the
Isabelle proof assistant and forms the core of a prototype
tool. The corecursor is derived from first principles,
without requiring new axioms or extensions of the logic.},
journal = {SIGPLAN Not.},
month = aug,
pages = {192–204},
numpages = {13},
keywords = {proof assistants, parametricity, higher-order logic,
Isabelle, (Co)recursion}
}
@Book{ bogachev2007,
author = {Bogachev, V. I.},
title = {Measure theory. {V}ol. {I}, {II}},
publisher = {Springer-Verlag, Berlin},
year = {2007},
pages = {Vol. I: xviii+500 pp., Vol. II: xiv+575},
isbn = {978-3-540-34513-8; 3-540-34513-2},
doi = {10.1007/978-3-540-34514-5},
url = {https://doi.org/10.1007/978-3-540-34514-5}
}
@Article{ bojanic74,
author = {Bojani\'c, Ranko},
title = {A simple proof of {M}ahler's theorem on approximation of
continuous functions of a p-adic variable by polynomials},
journal = {Journal of Number Theory},
volume = {6},
pages = {412-415},
year = {1974},
issn = {0022-314X},
doi = {10.1016/0022-314X(74)90038-9},
url = {https://doi.org/10.1016/0022-314X(74)90038-9}
}
@Book{ bollobas1986,
author = {Bollob\'{a}s, B\'{e}la},
title = {Combinatorics: Set Systems, Hypergraphs, Families of
Vectors, and Combinatorial Probability},
year = {1986},
isbn = {0521330599},
publisher = {Cambridge University Press}
}
@Article{ bondal_vandenbergh_2003,
author = {Bondal, Alexei I. and Van den Bergh, Michel},
title = {Generators and representability of functors in commutative
and noncommutative geometry},
journal = {Moscow Mathematical Journal},
volume = {3},
number = {1},
year = {2003},
pages = {1--36, 258},
doi = {10.17323/1609-4514-2003-3-1-1-36}
}
@Book{ borceux-vol1,
title = {Handbook of Categorical Algebra: Volume 1, Basic Category
Theory},
author = {Borceux, Francis},
series = {Encyclopedia of Mathematics},
volume = {50},
year = {1994},
publisher = {Cambridge University Press}
}
@Book{ borceux-vol2,
title = {Handbook of Categorical Algebra: Volume 2, Categories and
Structures},
author = {Borceux, Francis},
series = {Encyclopedia of Mathematics},
volume = {51},
year = {1994},
publisher = {Cambridge University Press}
}
@Book{ borceux-vol3,
title = {Handbook of Categorical Algebra: Volume 3, Sheaf Theory},
author = {Borceux, Francis},
series = {Encyclopedia of Mathematics},
volume = {52},
year = {1994},
publisher = {Cambridge University Press}
}
@Article{ borcherds1986vertex,
author = {Borcherds, Richard},
title = {Vertex algebras, Kac-Moody algebras, and the monster},
journal = {Proceedings of the National Academy of Sciences of the
United States of America},
number = {10},
year = {1986},
pages = {3068–3071},
volume = {83},
publisher = {National Academy of Sciences},
doi = {10.1073/pnas.83.10.3068}
}
@Misc{ BorgerJun2024,
title = {Facets of module theory over semirings},
author = {James Borger and Jaiung Jun},
year = {2024},
eprint = {2405.18645},
archiveprefix = {arXiv},
primaryclass = {math.AG},
url = {https://arxiv.org/abs/2405.18645}
}
@Article{ borsuk_mazurkiewicz1934,
author = {Borsuk, Karol and Mazurkiewicz, Stefan},
title = {Sur les rétractes absolus indécomposables},
journal = {C. R. Acad. Sci. Paris},
fjournal = {Comptes Rendus Hebdomadaires des Séances de l'Académie
des Sciences},
volume = {199},
year = {1934},
pages = {110--112}
}
@Book{ bosch-guntzer-remmert,
title = {Non-Archimedean Analysis : A Systematic Approach to Rigid
Analytic Geometry},
author = {S. Bosch and U. G{\"{u}}ntzer and R. Remmert},
series = {Grundlehren der mathematischen Wissenschaften},
volume = {261},
year = {1984},
publisher = {Springer-Verlag Berlin }
}
@Book{ bourbaki1966,
author = {Bourbaki, Nicolas},
title = {Elements of mathematics. {G}eneral topology. {P}art 1},
publisher = {Hermann, Paris; Addison-Wesley Publishing Co., Reading,
Mass.-London-Don Mills, Ont.},
year = {1966},
pages = {vii+437},
mrclass = {54.00 (00.00)},
mrnumber = {0205210}
}
@Book{ bourbaki1966b,
author = {Bourbaki, Nicolas},
title = {Elements of mathematics. {G}eneral topology. {P}art 2},
publisher = {Hermann, Paris; Addison-Wesley Publishing Co., Reading,
Mass.-London-Don Mills, Ont.},
year = {1966},
pages = {iv+363},
mrclass = {54-02 (00A05 54-01)},
mrnumber = {979295}
}
@Book{ bourbaki1968,
author = {Bourbaki, Nicolas},
title = {Lie groups and {L}ie algebras. {C}hapters 4--6},
series = {Elements of Mathematics (Berlin)},
note = {Translated from the 1968 French original by Andrew
Pressley},
publisher = {Springer-Verlag, Berlin},
year = {2002},
pages = {xii+300},
isbn = {3-540-42650-7},
mrclass = {17-01 (00A05 20E42 20F55 22-01)},
mrnumber = {1890629}
}
@Book{ bourbaki1974,
author = {Bourbaki, N.},
series = {Éléments de mathématique},
title = {Topologie Générale. {C}hapitres 5 à 10},
edition = {Réimpression inchangée de l'édition originale de 1974},
isbn = {978-3-540-34399-8},
language = {fr},
number = {1},
publisher = {Springer Berlin, Heidelberg},
year = {2007},
url = {https://doi.org/10.1007/978-3-540-34486-5}
}
@Book{ bourbaki1975,
author = {Bourbaki, Nicolas},
title = {Lie groups and {L}ie algebras. {C}hapters 1--3},
series = {Elements of Mathematics (Berlin)},
note = {Translated from the French, Reprint of the 1989 English
translation},
publisher = {Springer-Verlag, Berlin},
year = {1998},
pages = {xviii+450},
isbn = {3-540-64242-0},
mrclass = {17Bxx (00A05 22Exx)},
mrnumber = {1728312}
}
@Book{ bourbaki1975b,
author = {Bourbaki, Nicolas},
title = {Lie groups and {L}ie algebras. {C}hapters 7--9},
series = {Elements of Mathematics (Berlin)},
note = {Translated from the 1975 and 1982 French originals by
Andrew Pressley},
publisher = {Springer-Verlag, Berlin},
year = {2005},
pages = {xii+434},
isbn = {3-540-43405-4},
mrclass = {17-01 (01A75 22-01)},
mrnumber = {2109105}
}
@Book{ bourbaki1981,
author = {Bourbaki, N.},
title = {Algebra. {II}. {C}hapters 4--7},
series = {Elements of Mathematics},
note = {Translated from the French by P. M. Cohn and J. Howie},
publisher = {Springer-Verlag, Berlin},
year = {1990},
pages = {vii+461},
isbn = {3-540-19375-8},
mrclass = {00A05 (12-01 13-01)},
mrnumber = {1080964}
}
@Book{ bourbaki1987,
author = {Bourbaki, N.},
title = {Topological vector spaces. {C}hapters 1--5},
series = {Elements of Mathematics (Berlin)},
note = {Translated from the French by H. G. Eggleston and S.
Madan},
publisher = {Springer-Verlag, Berlin},
year = {1987},
pages = {viii+364},
isbn = {3-540-13627-4},
mrclass = {46-02 (46-01 46Axx 47D15)},
mrnumber = {910295},
doi = {10.1007/978-3-642-61715-7},
url = {https://doi.org/10.1007/978-3-642-61715-7}
}
@Book{ bourbaki1989,
author = {Bourbaki, N.},
title = {Algebra. {I}. {C}hapters 1–3},
series = {Elements of Mathematics},
note = {Translated from the French},
year = {1998},
publisher = {Springer-Verlag, Berlin},
isbn = {3-540-64243-9},
pages = {xxiii + 709},
edition = {Softcover edition of the 2nd printing 1989},
msc2010 = {00A05 12-01 15-01 20-01 16-01 17-01 15A69 15A72 15A75
15A78 17D05 20E05 20F16},
zmnumber = {0904.00001}
}
@Book{ bourbaki2007,
author = {Bourbaki, Nicolas},
edition = {Réimpression inchangée de l'édition originale de 1959},
series = {Eléments de mathématique},
title = {Algèbre. {C}hapitre IX},
isbn = {978-3-540-35338-6},
language = {fr},
number = {2},
publisher = {Springer},
year = {2007}
}
@Book{ bourbaki2023,
author = {Bourbaki, N.},
series = {Éléments de mathématique},
title = {Théories Spectrales. {C}hapitres 3 à 5},
isbn = {978-3-031-19504-4},
language = {fr},
number = {1},
publisher = {Springer Cham},
year = {2023},
url = {https://doi.org/10.1007/978-3-031-19505-1}
}
@Article{ bowlerGeschke2015,
author = {Bowler, Nathan and Geschke, Stefan},
year = {2015},
month = {10},
pages = {1},
title = {Self-dual uniform matroids on infinite sets},
volume = {144},
journal = {Proceedings of the American Mathematical Society},
doi = {10.1090/proc/12667}
}
@Book{ boydVandenberghe2004,
author = {Stephen P. Boyd and Lieven Vandenberghe},
title = {Convex Optimization},
publisher = {Cambridge University Press},
year = {2004},
isbn = {978-0-521-83378-3},
url = {https://web.stanford.edu/~boyd/cvxbook/bv_cvxbook.pdf}
}
@Article{ brandt2003,
author = {Brandt, Stephan},
year = {2003},
month = {12},
pages = {693--696},
title = {Note: On the structure of graphs with bounded clique
number},
volume = {23},
issue = {4},
journal = {Combinatorica},
doi = {10.1007/s00493-003-0042-z},
url = {https://doi.org/10.1007/s00493-003-0042-z}
}
@Book{ brodmannsharp13,
author = {Brodmann, M. P. and Sharp, R. Y.},
title = {Local cohomology},
series = {Cambridge Studies in Advanced Mathematics},
volume = {136},
edition = {Second},
note = {An algebraic introduction with geometric applications},
publisher = {Cambridge University Press, Cambridge},
year = {2013},
pages = {xxii+491},
isbn = {978-0-521-51363-0},
mrclass = {13D45 (13-01)}
}
@Article{ brown-1973,
author = {Brown, Kenneth S.},
title = {Abstract homotopy theory and generalized sheaf
cohomology},
journal = {Trans. Amer. Math. Soc.},
fjournal = {Transactions of the American Mathematical Society},
volume = {186},
year = {1973},
pages = {419--458},
issn = {0002-9947,1088-6850},
mrclass = {55B30 (18H99)},
mrnumber = {341469},
doi = {10.2307/1996573},
url = {https://doi.org/10.2307/1996573}
}
@Article{ bruhnDiestelKriesellPendavinghWollan2013,
author = {Henning Bruhn and Reinhard Diestel and Matthias Kriesell
and Rudi Pendavingh and Paul Wollan},
title = {Axioms for infinite matroids},
journal = {Advances in Mathematics},
volume = {239},
pages = {18-46},
year = {2013},
issn = {0001-8708},
doi = {https://doi.org/10.1016/j.aim.2013.01.011},
url = {https://www.sciencedirect.com/science/article/pii/S0001870813000261}
}
@Article{ buzyakovaClopenBox,
author = {Buzyakova, Raushan Z.},
title = {On clopen sets in {C}artesian products},
journal = {Comment. Math. Univ. Carolin.},
fjournal = {Commentationes Mathematicae Universitatis Carolinae},
volume = {42},
year = {2001},
number = {2},
pages = {357--362},
issn = {0010-2628,1213-7243},
mrclass = {54B10 (54B15 54D20 55M10)},
mrnumber = {1832154}
}
@Book{ cabreragarciarodriguezpalacios2014,
author = {Miguel {Cabrera Garc\'ia} and \'Angel {Rodr\'iguez
Palacios}},
title = {{Non-associative normed algebras. Volume 1. The
Vidav-Palmer and Gelfand-Naimark theorems}},
fjournal = {{Encyclopedia of Mathematics and Its Applications}},
journal = {{Encycl. Math. Appl.}},
issn = {0953-4806},
volume = {154},
isbn = {978-1-107-04306-0; 978-1-107-33776-3},
pages = {xxii + 712},
year = {2014},
publisher = {Cambridge: Cambridge University Press},
language = {English},
doi = {10.1017/CBO9781107337763},
msc2010 = {46-02 17-02 46H70 46K70 46L70 17A15 17A80 17C65},
zbl = {1322.46003}
}
@Article{ cadiou1972,
title = {Recursive definitions of partial functions and their
computations},
doi = {10.1145/942580.807072},
number = {14},
journal = {ACM SIGACT News},
author = {Cadiou, Jean Marie Cadiou and Manna, Zohar},
year = {1972},
month = {Jan},
pages = {58–65}
}
@Book{ calugareanu,
author = {C\v{a}lug\v{a}reanu, Grigore},
year = {2000},
month = {01},
pages = {},
title = {Lattice Concepts of Module Theory},
doi = {10.1007/978-94-015-9588-9}
}
@Article{ caramello2020,
title = {Denseness conditions, morphisms and equivalences of
toposes},
author = {Olivia Caramello},
year = {2020},
eprint = {1906.08737},
archiveprefix = {arXiv},
primaryclass = {math.CT},
url = {https://arxiv.org/abs/1906.08737}
}
@Article{ CARBONI1993145,
author = {Aurelio Carboni and Stephen Lack and R.F.C. Walters},
doi = {https://doi.org/10.1016/0022-4049(93)90035-R},
issn = {0022-4049},
journal = {Journal of Pure and Applied Algebra},
number = {2},
pages = {145-158},