-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreference.bib
More file actions
3321 lines (2950 loc) · 93.9 KB
/
Copy pathreference.bib
File metadata and controls
3321 lines (2950 loc) · 93.9 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
@article{noise-note,
author = "Pasqual",
title = "{Modeling and emulating noise in analog neutral-atom quantum processing units: a
practical tutorial}"
}
@article{emailV,
author = "Villaret, Guillaume",
title = "Email from 26/11/2026"
}
@article{emailB,
author = "Browaeys, Antoine",
title = "Email from 25/11/2026"
}
@article{Cordova:2023qei,
author = "Cordova, Clay and Rizi, Giovanni",
title = "{Non-invertible symmetry in Calabi-Yau conformal field theories}",
eprint = "2312.17308",
archivePrefix = "arXiv",
primaryClass = "hep-th",
doi = "10.1007/JHEP01(2025)045",
journal = "JHEP",
volume = "01",
pages = "045",
year = "2025"
}
@article{FangFang:2024eaw,
author = "Fang, Fang and others",
title = "{Probing critical phenomena in open quantum systems using atom arrays}",
eprint = "2402.15376",
archivePrefix = "arXiv",
primaryClass = "quant-ph",
month = "2",
year = "2024"
}
@article{Hellerman:2009bu,
author = "Hellerman, Simeon",
title = "{A Universal Inequality for CFT and Quantum Gravity}",
eprint = "0902.2790",
archivePrefix = "arXiv",
primaryClass = "hep-th",
reportNumber = "IPMU-09-0022, IPMU-09-0022",
doi = "10.1007/JHEP08(2011)130",
journal = "JHEP",
volume = "08",
pages = "130",
year = "2011"
}
@article{polyakov1969microscopic,
title={Microscopic description of critical phenomena},
author={Polyakov, AM},
journal={Sov. Phys. JETP},
volume={28},
pages={533--539},
year={1969}
}
@Article{10.21468/SciPostPhys.6.3.033,
title={{DMRG investigation of constrained models: from quantum dimer and quantum loop ladders to hard-boson and Fibonacci anyon chains}},
author={Natalia Chepiga and Frédéric Mila},
journal={SciPost Phys.},
volume={6},
pages={033},
year={2019},
publisher={SciPost},
doi={10.21468/SciPostPhys.6.3.033},
url={https://scipost.org/10.21468/SciPostPhys.6.3.033},
}
@article{Collier:2016cls,
author = "Collier, Scott and Lin, Ying-Hsuan and Yin, Xi",
title = "{Modular Bootstrap Revisited}",
eprint = "1608.06241",
archivePrefix = "arXiv",
primaryClass = "hep-th",
doi = "10.1007/JHEP09(2018)061",
journal = "JHEP",
volume = "09",
pages = "061",
year = "2018"
}
@article{Benjamin:2019stq,
author = "Benjamin, Nathan and Ooguri, Hirosi and Shao, Shu-Heng and Wang, Yifan",
title = "{Light-cone modular bootstrap and pure gravity}",
eprint = "1906.04184",
archivePrefix = "arXiv",
primaryClass = "hep-th",
reportNumber = "CALT-TH 2019-020, IPMU19-0086, PUPT-2586",
doi = "10.1103/PhysRevD.100.066029",
journal = "Phys. Rev. D",
volume = "100",
number = "6",
pages = "066029",
year = "2019"
}
@article{Pal:2025yvz,
author = "Pal, Sridip and Qiao, Jiaxin and van Rees, Balt C.",
title = "{Universality of the microcanonical entropy at large spin}",
eprint = "2505.02897",
archivePrefix = "arXiv",
primaryClass = "hep-th",
month = "5",
year = "2025"
}
@article{Dey:2024nje,
author = "Dey, Indranil and Pal, Sridip and Qiao, Jiaxin",
title = "{A universal inequality on the unitary 2D CFT partition function}",
eprint = "2410.18174",
archivePrefix = "arXiv",
primaryClass = "hep-th",
reportNumber = "CALT-TH 2024-039",
doi = "10.1007/JHEP07(2025)163",
journal = "JHEP",
volume = "07",
pages = "163",
year = "2025"
}
@article{Pal:2023cgk,
author = "Pal, Sridip and Qiao, Jiaxin",
title = "{Lightcone Modular Bootstrap and Tauberian Theory: A Cardy-Like Formula for Near-Extremal Black Holes}",
eprint = "2307.02587",
archivePrefix = "arXiv",
primaryClass = "hep-th",
doi = "10.1007/s00023-024-01441-2",
journal = "Annales Henri Poincare",
volume = "26",
number = "3",
pages = "787--844",
year = "2025"
}
@article{Pal:2022vqc,
author = "Pal, Sridip and Qiao, Jiaxin and Rychkov, Slava",
title = "{Twist Accumulation in Conformal Field Theory: A Rigorous Approach to the Lightcone Bootstrap}",
eprint = "2212.04893",
archivePrefix = "arXiv",
primaryClass = "hep-th",
doi = "10.1007/s00220-023-04767-w",
journal = "Commun. Math. Phys.",
volume = "402",
number = "3",
pages = "2169--2214",
year = "2023"
}
@article{Ruelle:1998zu,
author = "Ruelle, P. and Verhoeven, O.",
title = "{Discrete symmetries of unitary minimal conformal theories}",
eprint = "hep-th/9803129",
archivePrefix = "arXiv",
reportNumber = "UCL-IPT-98-03",
doi = "10.1016/S0550-3213(98)00639-7",
journal = "Nucl. Phys. B",
volume = "535",
pages = "650--680",
year = "1998"
}
@article{Jacobsen:2024jel,
author = "Jacobsen, Jesper Lykke and Wiese, Kay Joerg",
title = "{Lattice Realization of Complex Conformal Field Theories: Two-Dimensional Potts Model with Q{\ensuremath{>}}4 States}",
eprint = "2402.10732",
archivePrefix = "arXiv",
primaryClass = "hep-th",
doi = "10.1103/PhysRevLett.133.077101",
journal = "Phys. Rev. Lett.",
volume = "133",
number = "7",
pages = "077101",
year = "2024"
}
@article{Ambrosino:2025yug,
author = "Ambrosino, Federico and Negro, Stefano",
title = "{Minimal Model Renormalization Group Flows: Noninvertible Symmetries and Nonperturbative Description}",
eprint = "2501.07511",
archivePrefix = "arXiv",
primaryClass = "hep-th",
reportNumber = "DESY-25-003",
doi = "10.1103/dg1s-5vp6",
journal = "Phys. Rev. Lett.",
volume = "135",
number = "2",
pages = "021602",
year = "2025"
}
@article{PhysRevB.65.144520,
title = {Critical exponents and equation of state of the three-dimensional Heisenberg universality class},
author = {Campostrini, Massimo and Hasenbusch, Martin and Pelissetto, Andrea and Rossi, Paolo and Vicari, Ettore},
journal = {Phys. Rev. B},
volume = {65},
issue = {14},
pages = {144520},
numpages = {21},
year = {2002},
month = {Apr},
publisher = {American Physical Society},
doi = {10.1103/PhysRevB.65.144520},
url = {https://link.aps.org/doi/10.1103/PhysRevB.65.144520}
}
@article{Zhu:2022gjc,
author = "Zhu, Wei and Han, Chao and Huffman, Emilie and Hofmann, Johannes S. and He, Yin-Chen",
title = "{Uncovering Conformal Symmetry in the 3D Ising Transition: State-Operator Correspondence from a Quantum Fuzzy Sphere Regularization}",
eprint = "2210.13482",
archivePrefix = "arXiv",
primaryClass = "cond-mat.stat-mech",
doi = "10.1103/PhysRevX.13.021009",
journal = "Phys. Rev. X",
volume = "13",
number = "2",
pages = "021009",
year = "2023"
}
@article{PhysRevB.63.214503,
title = {Critical behavior of the three-dimensional $\mathrm{XY}$ universality class},
author = {Campostrini, Massimo and Hasenbusch, Martin and Pelissetto, Andrea and Rossi, Paolo and Vicari, Ettore},
journal = {Phys. Rev. B},
volume = {63},
issue = {21},
pages = {214503},
numpages = {28},
year = {2001},
month = {May},
publisher = {American Physical Society},
doi = {10.1103/PhysRevB.63.214503},
url = {https://link.aps.org/doi/10.1103/PhysRevB.63.214503}
}
@article{Nakayama:2024msv,
author = "Nakayama, Yu and Tanaka, Takahilo",
title = "{Infinitely many new renormalization group flows between Virasoro minimal models from non-invertible symmetries}",
eprint = "2407.21353",
archivePrefix = "arXiv",
primaryClass = "hep-th",
reportNumber = "YITP-24-92",
doi = "10.1007/JHEP11(2024)137",
journal = "JHEP",
volume = "11",
pages = "137",
year = "2024"
}
@article{Copetti:2024rqj,
author = "Copetti, Christian and Cordova, Lucia and Komatsu, Shota",
title = "{Noninvertible Symmetries, Anomalies, and Scattering Amplitudes}",
eprint = "2403.04835",
archivePrefix = "arXiv",
primaryClass = "hep-th",
doi = "10.1103/PhysRevLett.133.181601",
journal = "Phys. Rev. Lett.",
volume = "133",
number = "18",
pages = "181601",
year = "2024"
}
@article{Wang_2022,
title={Universal finite-size amplitude and anomalous entangment entropy of $z=2$ quantum Lifshitz criticalities in topological chains},
volume={12},
ISSN={2542-4653},
url={http://dx.doi.org/10.21468/SciPostPhys.12.4.134},
DOI={10.21468/scipostphys.12.4.134},
number={4},
journal={SciPost Physics},
publisher={Stichting SciPost},
author={Wang, Ke and Sedrakyan, Tigran},
year={2022},
month=apr }
@article{Shao:2023gho,
author = "Shao, Shu-Heng",
title = "{What's Done Cannot Be Undone: TASI Lectures on Non-Invertible Symmetries}",
eprint = "2308.00747",
archivePrefix = "arXiv",
primaryClass = "hep-th",
reportNumber = "YITP-SB-2023-19",
month = "8",
year = "2023"
}
@article{Seiberg:2023cdc,
author = "Seiberg, Nathan and Shao, Shu-Heng",
title = "{Majorana chain and Ising model - (non-invertible) translations, anomalies, and emanant symmetries}",
eprint = "2307.02534",
archivePrefix = "arXiv",
primaryClass = "cond-mat.str-el",
reportNumber = "YITP-SB-2023-14",
doi = "10.21468/SciPostPhys.16.3.064",
journal = "SciPost Phys.",
volume = "16",
number = "3",
pages = "064",
year = "2024"
}
@misc{delaney2019fusionrulespermutationextensions,
title={Fusion rules for permutation extensions of modular tensor categories},
author={Colleen Delaney},
year={2019},
eprint={1909.03003},
archivePrefix={arXiv},
primaryClass={math.QA},
url={https://arxiv.org/abs/1909.03003},
}
@article{Osborn:2020cnf,
author = "Osborn, Hugh and Stergiou, Andreas",
title = "{Heavy handed quest for fixed points in multiple coupling scalar theories in the $\epsilon$ expansion}",
eprint = "2010.15915",
archivePrefix = "arXiv",
primaryClass = "hep-th",
reportNumber = "LA-UR-20-27569",
doi = "10.1007/JHEP04(2021)128",
journal = "JHEP",
volume = "04",
pages = "128",
year = "2021"
}
@article{Osborn:2017ucf,
author = "Osborn, Hugh and Stergiou, Andreas",
title = "{Seeking fixed points in multiple coupling scalar theories in the $\epsilon$ expansion}",
eprint = "1707.06165",
archivePrefix = "arXiv",
primaryClass = "hep-th",
reportNumber = "DAMTP-2017-30, CERN-TH-2017-149",
doi = "10.1007/JHEP05(2018)051",
journal = "JHEP",
volume = "05",
pages = "051",
year = "2018"
}
@article{Dunbar:1993hr,
author = "Dunbar, David C. and Joshi, Keith G.",
title = "{Maverick examples of coset conformal field theories}",
eprint = "hep-th/9309093",
archivePrefix = "arXiv",
reportNumber = "LTH-93-310, SWAT-93-07",
doi = "10.1142/S0217732393003196",
journal = "Mod. Phys. Lett. A",
volume = "8",
pages = "2803--2814",
year = "1993"
}
@article{Bais:1987zk,
author = "Bais, F. A. and Bouwknegt, P. and Surridge, M. and Schoutens, K.",
title = "{Coset Construction for Extended Virasoro Algebras}",
reportNumber = "ITFA-87-18, THU-87-21",
doi = "10.1016/0550-3213(88)90632-3",
journal = "Nucl. Phys. B",
volume = "304",
pages = "371--391",
year = "1988"
}
@article{Dotsenko:2003zc,
author = "Dotsenko, Vladimir S. and Jacobsen, Jesper Lykke and Raoul, Santachiara",
title = "{Parafermionic theory with the symmetry Z(N), for N odd}",
eprint = "hep-th/0303126",
archivePrefix = "arXiv",
doi = "10.1016/S0550-3213(03)00391-2",
journal = "Nucl. Phys. B",
volume = "664",
pages = "477--511",
year = "2003"
}
@article{Dotsenko:2003ui,
author = "Dotsenko, Vladimir S and Jacobsen, Jesper Lykke and Santachiara, Raoul",
title = "{Parafermionic theory with the symmetry Z(N), for N even}",
eprint = "hep-th/0310131",
archivePrefix = "arXiv",
doi = "10.1016/j.nuclphysb.2003.11.019",
journal = "Nucl. Phys. B",
volume = "679",
pages = "464--494",
year = "2004"
}
@article{WESS197195,
title = {Consequences of anomalous ward identities},
journal = {Physics Letters B},
volume = {37},
number = {1},
pages = {95-97},
year = {1971},
issn = {0370-2693},
doi = {https://doi.org/10.1016/0370-2693(71)90582-X},
url = {https://www.sciencedirect.com/science/article/pii/037026937190582X},
author = {J. Wess and B. Zumino},
abstract = {The anomalies of Ward identities are shown to satisfy consistency or integrability relations, which restrict their possible form. For the case of SU(3) × SU(3) we verify that the anomalies given by Bardeen satisfy the consistency relations. A solution of the anomalous Ward identities is also given which describes concisely all anomalous contributions to low energy theorems. The contributions to strong five pseudoscalar interactions, to Kl4, to one- and two-photon interactions with three pseudoscalars are explicity exhibited.}
}
@article{Witten:1983tw,
author = "Witten, Edward",
title = "{Global Aspects of Current Algebra}",
reportNumber = "PRINT-83-0262 (PRINCETON)",
doi = "10.1016/0550-3213(83)90063-9",
journal = "Nucl. Phys. B",
volume = "223",
pages = "422--432",
year = "1983"
}
@article{Mukhi:2022bte,
author = "Mukhi, Sunil and Rayhaun, Brandon C.",
title = "{Classification of Unitary RCFTs with Two Primaries and Central Charge Less Than 25}",
eprint = "2208.05486",
archivePrefix = "arXiv",
primaryClass = "hep-th",
doi = "10.1007/s00220-023-04681-1",
journal = "Commun. Math. Phys.",
volume = "401",
number = "2",
pages = "1899--1949",
year = "2023"
}
@article{Mathur:1988na,
author = "Mathur, Samir D. and Mukhi, Sunil and Sen, Ashoke",
title = "{On the Classification of Rational Conformal Field Theories}",
reportNumber = "TIFR/TH/88-39",
doi = "10.1016/0370-2693(88)91765-0",
journal = "Phys. Lett. B",
volume = "213",
pages = "303--308",
year = "1988"
}
@article{Verlinde:1988sn,
author = "Verlinde, Erik P.",
title = "{Fusion Rules and Modular Transformations in 2D Conformal Field Theory}",
reportNumber = "THU-88/17",
doi = "10.1016/0550-3213(88)90603-7",
journal = "Nucl. Phys. B",
volume = "300",
pages = "360--376",
year = "1988"
}
@article{Cappelli:1986hf,
author = "Cappelli, Andrea and Itzykson, C. and Zuber, J. -B.",
title = "{Modular invariant partition functions in two dimensions}",
reportNumber = "SACLAY-PHT-86-122",
doi = "10.1016/0550-3213(87)90155-6",
journal = "Nucl. Phys. B",
volume = "280",
pages = "445--465",
year = "1987"
}
@article{Fateev:1985mm,
author = "Fateev, V. A. and Zamolodchikov, A. B.",
title = "{Parafermionic Currents in the Two-Dimensional Conformal Quantum Field Theory and Selfdual Critical Points in Z(n) Invariant Statistical Systems}",
reportNumber = "LANDAU-1985-9",
journal = "Sov. Phys. JETP",
volume = "62",
pages = "215--225",
year = "1985"
}
@article{Dotsenko:2002gs,
author = "Dotsenko, Vladimir S. and Jacobsen, Jesper Lykke and Santachiara, Raoul",
title = "{Parafermionic theory with the symmetry Z(5)}",
eprint = "hep-th/0212158",
archivePrefix = "arXiv",
doi = "10.1016/S0550-3213(03)00066-X",
journal = "Nucl. Phys. B",
volume = "656",
pages = "259--324",
year = "2003"
}
@article{Zamolodchikov:1985wn,
author = "Zamolodchikov, A. B.",
title = "{Infinite Additional Symmetries in Two-Dimensional Conformal Quantum Field Theory}",
doi = "10.1007/BF01036128",
journal = "Theor. Math. Phys.",
volume = "65",
pages = "1205--1213",
year = "1985"
}
@book{DiFrancesco:1997nk,
author = "Di Francesco, P. and Mathieu, P. and Senechal, D.",
title = "{Conformal Field Theory}",
doi = "10.1007/978-1-4612-2256-9",
isbn = "978-0-387-94785-3, 978-1-4612-7475-9",
publisher = "Springer-Verlag",
address = "New York",
series = "Graduate Texts in Contemporary Physics",
year = "1997"
}
@article{Goddard:1984vk,
author = "Goddard, P. and Kent, A. and Olive, David I.",
title = "{Virasoro Algebras and Coset Space Models}",
reportNumber = "DAMTP-84-22",
doi = "10.1016/0370-2693(85)91145-1",
journal = "Phys. Lett. B",
volume = "152",
pages = "88--92",
year = "1985"
}
@article{Goddard:1986ee,
author = "Goddard, P. and Kent, A. and Olive, David I.",
title = "{Unitary Representations of the Virasoro and Supervirasoro Algebras}",
reportNumber = "DAMTP-85-21",
doi = "10.1007/BF01464283",
journal = "Commun. Math. Phys.",
volume = "103",
pages = "105--119",
year = "1986"
}
@article{Maloney:2007ud,
author = "Maloney, Alexander and Witten, Edward",
title = "{Quantum Gravity Partition Functions in Three Dimensions}",
eprint = "0712.0155",
archivePrefix = "arXiv",
primaryClass = "hep-th",
doi = "10.1007/JHEP02(2010)029",
journal = "JHEP",
volume = "02",
pages = "029",
year = "2010"
}
@article{Fateev:1991bv,
author = "Fateev, V. A. and Zamolodchikov, Al. B.",
title = "{Integrable perturbations of ZN parafermion models and the O(3) sigma model}",
reportNumber = "PAR-LPTHE-91-51",
doi = "10.1016/0370-2693(91)91283-2",
journal = "Phys. Lett. B",
volume = "271",
pages = "91--100",
year = "1991"
}
@article{Freedman:2001eqc,
author = "Freedman, Michael H. and Kitaev, Alexei and Larsen, Michael J. and Wang, Zhenghan",
title = "{Topological Quantum Computation}",
eprint = "quant-ph/0101025",
archivePrefix = "arXiv",
month = "1",
year = "2001"
}
@article{Read:1998ed,
author = "Read, N. and Rezayi, E.",
title = "{Beyond paired quantum Hall states: Parafermions and incompressible states in the first excited Landau level}",
eprint = "cond-mat/9809384",
archivePrefix = "arXiv",
reportNumber = "NSF-ITP-98-091",
doi = "10.1103/PhysRevB.59.8084",
journal = "Phys. Rev. B",
volume = "59",
pages = "8084",
year = "1999"
}
@article{Hung:2025gcp,
author = "Hung, Ling-Yan and Ji, Kaixin and Shen, Ce and Wan, Yidun and Zhao, Yu",
title = "{A 2D-CFT Factory: Critical Lattice Models from Competing Anyon Condensation Processes in SymTO/SymTFT}",
eprint = "2506.05324",
archivePrefix = "arXiv",
primaryClass = "cond-mat.str-el",
month = "6",
year = "2025"
}
@article{Bottini:2025hri,
author = "Bottini, Lea E. and Schafer-Nameki, Sakura",
title = "{Construction of a Gapless Phase with Haagerup Symmetry}",
eprint = "2410.19040",
archivePrefix = "arXiv",
primaryClass = "hep-th",
doi = "10.1103/PhysRevLett.134.191602",
journal = "Phys. Rev. Lett.",
volume = "134",
number = "19",
pages = "191602",
year = "2025"
}
@article{Huang:2021nvb,
author = "Huang, Tzu-Chen and Lin, Ying-Hsuan and Ohmori, Kantaro and Tachikawa, Yuji and Tezuka, Masaki",
title = "{Numerical Evidence for a Haagerup Conformal Field Theory}",
eprint = "2110.03008",
archivePrefix = "arXiv",
primaryClass = "cond-mat.stat-mech",
reportNumber = "CALT-TH-2021-034",
doi = "10.1103/PhysRevLett.128.231603",
journal = "Phys. Rev. Lett.",
volume = "128",
number = "23",
pages = "231603",
year = "2022"
}
@article{Zamolodchikov:1987ti,
author = "Zamolodchikov, A. B.",
title = "{Renormalization Group and Perturbation Theory Near Fixed Points in Two-Dimensional Field Theory}",
journal = "Sov. J. Nucl. Phys.",
volume = "46",
pages = "1090",
year = "1987"
}
@article{Hartman:2014oaa,
author = "Hartman, Thomas and Keller, Christoph A. and Stoica, Bogdan",
title = "{Universal Spectrum of 2d Conformal Field Theory in the Large c Limit}",
eprint = "1405.5137",
archivePrefix = "arXiv",
primaryClass = "hep-th",
reportNumber = "CALT-68-2889, RUNHETC-2014-07",
doi = "10.1007/JHEP09(2014)118",
journal = "JHEP",
volume = "09",
pages = "118",
year = "2014"
}
@article{Yin:2017yyn,
author = "Yin, Xi",
title = "{Aspects of Two-Dimensional Conformal Field Theories}",
doi = "10.22323/1.305.0003",
journal = "PoS",
volume = "TASI2017",
pages = "003",
year = "2017"
}
@article{Kusuki:2018wpa,
author = "Kusuki, Yuya",
title = "{Light Cone Bootstrap in General 2D CFTs and Entanglement from Light Cone Singularity}",
eprint = "1810.01335",
archivePrefix = "arXiv",
primaryClass = "hep-th",
reportNumber = "YITP-18-106",
doi = "10.1007/JHEP01(2019)025",
journal = "JHEP",
volume = "01",
pages = "025",
year = "2019"
}
@article{Collier:2018exn,
author = "Collier, Scott and Gobeil, Yan and Maxfield, Henry and Perlmutter, Eric",
title = "{Quantum Regge Trajectories and the Virasoro Analytic Bootstrap}",
eprint = "1811.05710",
archivePrefix = "arXiv",
primaryClass = "hep-th",
doi = "10.1007/JHEP05(2019)212",
journal = "JHEP",
volume = "05",
pages = "212",
year = "2019"
}
@article{Collier:2019weq,
author = "Collier, Scott and Maloney, Alexander and Maxfield, Henry and Tsiares, Ioannis",
title = "{Universal dynamics of heavy operators in CFT$_{2}$}",
eprint = "1912.00222",
archivePrefix = "arXiv",
primaryClass = "hep-th",
doi = "10.1007/JHEP07(2020)074",
journal = "JHEP",
volume = "07",
pages = "074",
year = "2020"
}
@article{Belavin:1984vu,
author = {Belavin, A. A. and Polyakov, Alexander M. and Zamolodchikov, A. B.},
date-added = {2024-08-13 19:08:09 +0200},
date-modified = {2024-08-13 19:08:09 +0200},
doi = {10.1016/0550-3213(84)90052-X},
journal = {Nucl. Phys.},
pages = {333-380},
slaccitation = {%%CITATION = NUPHA,B241,333;%%},
title = {{Infinite conformal symmetry in two-dimensional quantum field theory}},
volume = {B241},
year = {1984}
}
@article{Antunes:2022vtb,
author = "Antunes, Ant{\'o}nio and Behan, Connor",
title = "{Coupled Minimal Conformal Field Theory Models Revisited}",
eprint = "2211.16503",
archivePrefix = "arXiv",
primaryClass = "hep-th",
reportNumber = "DESY-22-191",
doi = "10.1103/PhysRevLett.130.071602",
journal = "Phys. Rev. Lett.",
volume = "130",
number = "7",
pages = "071602",
year = "2023"
}
@article{Antunes:2024mfb,
author = "Antunes, Ant{\'o}nio and Behan, Connor",
title = "{Coupled minimal models revisited II: Constraints from permutation symmetry}",
eprint = "2412.21107",
archivePrefix = "arXiv",
primaryClass = "hep-th",
doi = "10.21468/SciPostPhys.18.4.132",
journal = "SciPost Phys.",
volume = "18",
number = "4",
pages = "132",
year = "2025"
}
@article{Vafa:1988ag,
author = "Vafa, Cumrun",
title = "{Toward Classification of Conformal Theories}",
reportNumber = "HUTP-88/A011",
doi = "10.1016/0370-2693(88)91603-6",
journal = "Phys. Lett. B",
volume = "206",
pages = "421--426",
year = "1988"
}
@article{Dotsenko:1998gyp,
author = "Dotsenko, Vladimir and Jacobsen, Jesper Lykke and Lewis, Marc-Andr{\'e} and Picco, Marco",
title = "{Coupled Potts models: Self-duality and fixed point structure}",
eprint = "cond-mat/9812227",
archivePrefix = "arXiv",
reportNumber = "PAR-LPTHE-98-56",
doi = "10.1016/S0550-3213(99)00097-8",
journal = "Nucl. Phys. B",
volume = "546",
pages = "505--557",
year = "1999"
}
@article{Kousvos:2024dlz,
author = "Kousvos, Stefanos R. and Piazza, Alessandro and Vichi, Alessandro",
title = "{Exploring replica-Potts CFTs in two dimensions}",
eprint = "2405.19416",
archivePrefix = "arXiv",
primaryClass = "hep-th",
doi = "10.1007/JHEP11(2024)030",
journal = "JHEP",
volume = "11",
pages = "030",
year = "2024"
}
@article{Vaysburd:1995sp,
author = "Vaysburd, I.",
title = "{Critical RSOS models in external fields}",
eprint = "hep-th/9503070",
archivePrefix = "arXiv",
reportNumber = "SISSA-150-94-FM",
doi = "10.1016/0550-3213(95)00214-D",
journal = "Nucl. Phys. B",
volume = "446",
pages = "387--404",
year = "1995"
}
@article{Zou:2017zce,
author = "Zou, Yijian and Milsted, Ashley and Vidal, Guifre",
title = "{Conformal data and renormalization group flow in critical quantum spin chains using periodic uniform matrix product states}",
eprint = "1710.05397",
archivePrefix = "arXiv",
primaryClass = "cond-mat.str-el",
doi = "10.1103/PhysRevLett.121.230402",
journal = "Phys. Rev. Lett.",
volume = "121",
number = "23",
pages = "230402",
year = "2018"
}
@article{PhysRevB.83.125104,
title = {Exploiting translational invariance in matrix product state simulations of spin chains with periodic boundary conditions},
author = {Pirvu, B. and Verstraete, F. and Vidal, G.},
journal = {Phys. Rev. B},
volume = {83},
issue = {12},
pages = {125104},
numpages = {14},
year = {2011},
month = {Mar},
publisher = {American Physical Society},
doi = {10.1103/PhysRevB.83.125104},
url = {https://link.aps.org/doi/10.1103/PhysRevB.83.125104}
}
@article{itensor,
title={{The ITensor Software Library for Tensor Network Calculations}},
author={Matthew Fishman and Steven R. White and E. Miles Stoudenmire},
journal={SciPost Phys. Codebases},
pages={4},
year={2022},
publisher={SciPost},
doi={10.21468/SciPostPhysCodeb.4},
url={https://scipost.org/10.21468/SciPostPhysCodeb.4}
}
@article{itensor-r0.3,
title={{Codebase release 0.3 for ITensor}},
author={Matthew Fishman and Steven R. White and E. Miles Stoudenmire},
journal={SciPost Phys. Codebases},
pages={4-r0.3},
year={2022},
publisher={SciPost},
doi={10.21468/SciPostPhysCodeb.4-r0.3},
url={https://scipost.org/10.21468/SciPostPhysCodeb.4-r0.3}
}
@article{Feiguin:2006ydp,
author = "Feiguin, Adrian and Trebst, Simon and Ludwig, Andreas W. W. and Troyer, Matthias and Kitaev, Alexei and Wang, Zhenghan and Freedman, Michael H.",
title = "{Interacting anyons in topological quantum liquids: The golden chain}",
eprint = "cond-mat/0612341",
archivePrefix = "arXiv",
doi = "10.1103/PhysRevLett.98.160409",
journal = "Phys. Rev. Lett.",
volume = "98",
pages = "160409",
year = "2007"
}
@article{Thorngren:2021yso,
author = "Thorngren, Ryan and Wang, Yifan",
title = "{Fusion category symmetry. Part II. Categoriosities at c = 1 and beyond}",
eprint = "2106.12577",
archivePrefix = "arXiv",
primaryClass = "hep-th",
doi = "10.1007/JHEP07(2024)051",
journal = "JHEP",
volume = "07",
pages = "051",
year = "2024"
}
@article{le1980critical,
title={Critical exponents from field theory},
author={Le Guillou, JC and Zinn-Justin, J},
journal={Physical Review B},
volume={21},
number={9},
pages={3976},
year={1980},
publisher={American Physical Society}
}
@article{LECLAIR1998523,
title = {Integrability of coupled conformal field theories},
journal = {Nuclear Physics B},
volume = {512},
number = {3},
pages = {523-542},
year = {1998},
issn = {0550-3213},
doi = {https://doi.org/10.1016/S0550-3213(97)00724-4},
url = {https://www.sciencedirect.com/science/article/pii/S0550321397007244},
author = {A. LeClair and A.W.W. Ludwig and G. Mussardo},
keywords = {Affine Toda, Exact -matrix},
abstract = {The massive phase of two-layer integrable systems is studied by means of RSOS restrictions of affine Toda theories. A general classification of all possible integrable perturbations of coupled minimal models is pursued by an analysis of the (extended) Dynkin diagrams. The models considered in most detail are coupled minimal models which interpolate between magnetically coupled Ising models and Heisenberg spin ladders along the c < 1 discrete series.}
}
@article{Chang:2018iay,
author = "Chang, Chi-Ming and Lin, Ying-Hsuan and Shao, Shu-Heng and Wang, Yifan and Yin, Xi",
title = "{Topological Defect Lines and Renormalization Group Flows in Two Dimensions}",
eprint = "1802.04445",
archivePrefix = "arXiv",
primaryClass = "hep-th",
reportNumber = "CALT-TH-2017-067, CALT-TH 2017-067, PUPT-2546",
doi = "10.1007/JHEP01(2019)026",
journal = "JHEP",
volume = "01",
pages = "026",
year = "2019"
}
@article{Feiguin_2007,
title={Interacting Anyons in Topological Quantum Liquids: The Golden Chain},
volume={98},
ISSN={1079-7114},
url={http://dx.doi.org/10.1103/PhysRevLett.98.160409},
DOI={10.1103/physrevlett.98.160409},
number={16},
journal={Physical Review Letters},
publisher={American Physical Society (APS)},
author={Feiguin, Adrian and Trebst, Simon and Ludwig, Andreas W. W. and Troyer, Matthias and Kitaev, Alexei and Wang, Zhenghan and Freedman, Michael H.},
year={2007},
month=apr }
@article{Sinha:2023hum,
author = "Sinha, Madhav and Yan, Fei and Grans-Samuelsson, Linnea and Roy, Ananda and Saleur, Hubert",
title = "{Lattice realizations of topological defects in the critical (1+1)-d three-state Potts model}",
eprint = "2310.19703",
archivePrefix = "arXiv",
primaryClass = "hep-th",
doi = "10.1007/JHEP07(2024)225",
journal = "JHEP",
volume = "07",
pages = "225",
year = "2024"
}
@article{Trebst_2008,
title={A Short Introduction to Fibonacci Anyon Models},
volume={176},
ISSN={0375-9687},
url={http://dx.doi.org/10.1143/PTPS.176.384},
DOI={10.1143/ptps.176.384},
journal={Progress of Theoretical Physics Supplement},
publisher={Oxford University Press (OUP)},
author={Trebst, Simon and Troyer, Matthias and Wang, Zhenghan and Ludwig, Andreas W. W.},
year={2008},
pages={384–407} }
@article{Lin:2023uvm,
author = "Lin, Ying-Hsuan and Shao, Shu-Heng",
title = "{Bootstrapping noninvertible symmetries}",
eprint = "2302.13900",
archivePrefix = "arXiv",
primaryClass = "hep-th",
reportNumber = "YITP-SB-2023-03",
doi = "10.1103/PhysRevD.107.125025",
journal = "Phys. Rev. D",
volume = "107",
number = "12",
pages = "125025",
year = "2023"
}
@article{Northe:2024tnm,
author = "Northe, Christian",
title = "{Young Researchers School 2024 Maynooth: Lectures on CFT, BCFT and DCFT}",
eprint = "2411.03381",
archivePrefix = "arXiv",
primaryClass = "hep-th",
month = "11",
year = "2024"
}
@article{Rychkov:2023wsd,
author = "Rychkov, Slava and Su, Ning",
title = "{New Developments in the Numerical Conformal Bootstrap}",
eprint = "2311.15844",
archivePrefix = "arXiv",
primaryClass = "hep-th",
month = "11",
year = "2023"
}
@article{Chai:2020zgq,
author = "Chai, Noam and Chaudhuri, Soumyadeep and Choi, Changha and Komargodski, Zohar and Rabinovici, Eliezer and Smolkin, Michael",
title = "{Thermal Order in Conformal Theories}",
eprint = "2005.03676",
archivePrefix = "arXiv",
primaryClass = "hep-th",
doi = "10.1103/PhysRevD.102.065014",
journal = "Phys. Rev. D",
volume = "102",
number = "6",
pages = "065014",
year = "2020"
}
@article{Chai:2020onq,
author = "Chai, Noam and Chaudhuri, Soumyadeep and Choi, Changha and Komargodski, Zohar and Rabinovici, Eliezer and Smolkin, Michael",
title = "{Symmetry Breaking at All Temperatures}",
doi = "10.1103/PhysRevLett.125.131603",
journal = "Phys. Rev. Lett.",
volume = "125",
number = "13",