-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1154 lines (1149 loc) · 48.2 KB
/
index.html
File metadata and controls
1154 lines (1149 loc) · 48.2 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
<meta name="generator" content="Doxygen 1.10.0"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Okuto Morikawa: My activities</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<script type="text/javascript" src="clipboard.js"></script>
<script type="text/javascript" src="cookie.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr id="projectrow">
<td id="projectalign">
<div id="projectname">森川億人 (Okuto Morikawa)
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.10.0 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
var searchBox = new SearchBox("searchBox", "search/",'.html');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&dn=expat.txt MIT */
$(function() {
initMenu('',true,false,'search.php','Search');
$(function() { init_search(); });
});
/* @license-end */
</script>
<div id="main-nav"></div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<div id="MSearchResults">
<div class="SRPage">
<div id="SRIndex">
<div id="SRResults"></div>
<div class="SRStatus" id="Loading">Loading...</div>
<div class="SRStatus" id="Searching">Searching...</div>
<div class="SRStatus" id="NoMatches">No Matches</div>
</div>
</div>
</div>
</div>
</div><!-- top -->
<div><div class="header">
<div class="headertitle"><div class="title">My activities</div></div>
</div><!--header-->
<div class="contents">
<div class="textblock"><!DOCTYPE NETSCAPE-Bookmark-file-1>
<HTML>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<Title>My activities</Title>
<DT><H3 FOLDED>Contact</H3>
<UL>
<LI>Email address: <A HREF="mailto:[email protected]">[email protected]</A>
<LI>Gmail address: <A HREF="mailto:[email protected]">[email protected]</A>
</UL>
<UL>
<LI>Forwarding email: <A HREF="mailto:[email protected]">[email protected]</A>,
<A HREF="mailto:[email protected]">[email protected]</A>,
<A HREF="mailto:[email protected]">[email protected]</A>
<LI>Old ones: <A HREF="mailto:[email protected]">[email protected]</A>,
<A HREF="mailto:[email protected]">[email protected]</A>
</UL>
<DT><H3 FOLDED>Links (personal)</H3>
<UL>
<LI><A HREF="https://sites.google.com/view/o-morikawa">Google Site</A>
[<A HREF="https://drive.google.com/drive/folders/1X9O7IcnDU1eH1GX1gZiPoGaITmEFSWnx?usp=drive_link">public_doc@Drive</A>]
[<A HREF="https://booklog.jp/users/o-morikawa">booklog</A>]
<LI><A HREF="https://github.com/o-morikawa">GitHub</A>
[<A HREF="https://github.com/o-morikawa/o-morikawa.github.io">.github.io</A>]
<LI><A HREF="https://orcid.org/0000-0002-0044-4491">ORCID</A>
<LI><A HREF="https://researchmap.jp/o-morikawa">ResearchMap</A>,
<A HREF="https://jglobal.jst.go.jp/detail?JGLOBAL_ID=202001002638083611">J-GLOBAL</A>
<LI><A HREF="https://inspirehep.net/authors/1790648?ui-citation-summary=true">INSPIRE</A>,
<A HREF="https://arxiv.org/search/?searchtype=author&query=Morikawa%2C+O">arXiv</A>,
<A HREF="https://www.researchgate.net/profile/Okuto-Morikawa">ResearchGate</A>
<LI><A HREF="https://twitter.com/o_morikawa">twitter</A>,
<A HREF="https://social.vivaldi.net/@omorikawa">vivaldi</A>
<LI><A HREF="https://morley.booth.pm/">Booth</A>,
<A HREF="https://factory.pixiv.net/">PixivFACTORY</A>
</UL>
<DT><H3 FOLDED>Links (labs)</H3>
<UL>
<LI><A HREF="https://sites.google.com/view/kyushu-het/home">九大素論</A>
[<A HREF="https://sites.google.com/view/kyushu-het/members/okuto-morikawa">個人ページ</A>]
<LI><A HREF="http://www-het.phys.sci.osaka-u.ac.jp/">阪大素論</A>
<LI><A HREF="https://ithems.riken.jp/ja">iTHEMS</A>
[<A HREF="https://ithems.riken.jp/ja/members/okuto-morikawa">個人ページ</A>]
<LI><A HREF="https://sites.google.com/view/grappa-qft">GRAPPA-QFT</A>
<LI><A HREF="https://docs.google.com/document/d/1DKwedFo8SW9py_2XdvTJ1c64E30NlU5ckUBxWXkzM2Y/edit?usp=sharing">GoogleDocs</A>
</UL>
<DT><H3 FOLDED>Career</H3>
<UL>
<LI>2024年(令和6年)4月 - 2027(令和9年)3月 理化学研究所基礎科学特別研究員
<LI>2023年(令和5年)10月 - 2024(令和6年)3月 大阪大学特任研究員(常勤)
<LI>2021年(令和3年)4月 - 2024(令和6年)3月 学振特別研究員PD@大阪大学
<LI>2018年(平成30年)4月 - 2021年(令和3年)3月 学振特別研究員DC1@九州大学
</UL>
<DT><H3 FOLDED>Education</H3>
<UL>
<LI>2018年(平成30年)4月 - 2021年(令和3年)3月 九州大学大学院理学府物理学専攻博士課程
<LI>2016年(平成28年)4月 - 2018年(平成30年)3月 九州大学大学院理学府物理学専攻修士課程
<LI>2012年(平成24年)4月 - 2016年(平成28年)3月 九州大学理学部物理学科
<LI>2009年(平成21年)4月 - 2012年(平成24年)3月 愛知県立新川高等学校
<LI>2006年(平成18年)4月 - 2009年(平成21年)3月 名古屋市立山田東中学校
<LI>2000年(平成12年)4月 - 2006年(平成18年)3月 名古屋市立大野木小学校
</UL>
<DT><H3 FOLDED>Awards</H3>
<UL>
<LI><A HREF="https://community.wolfram.com/groups/-/m/t/3635564">Wolfram Community Staff Picks (Featured Contributor Badge), Editorial selection / featured post </A>
<LI><A HREF="https://www2.yukawa.kyoto-u.ac.jp/~soryushi.shogakukai/">第19回(2024年度)中村誠太郎賞</A>
<LI><A HREF="https://www.jps.or.jp/activities/awards/jusyosya/wakate2024.php">第18回(2024年)日本物理学会若手奨励賞</A>
<LI>PTEP Editors' Choice Award
<br>
M. Abe, O. Morikawa, and H. Suzuki, ``Fractional topological charge in lattice Abelian gauge theory,'' PTEP 2023, no.2, 023B03 (2023)
<br>
Picked up in JPS Hot Topics [<A HREF="https://doi.org/10.7566/JPSHT.3.010">doi:10.7566/JPSHT.3.010</A>]
<br>
Picked up in JPS Magazine BUTSURI [<A HREF="https://doi.org/10.11316/butsuri.78.7_419">doi:10.11316/butsuri.78.7_419</A>]
<LI><A HREF="http://www2.yukawa.kyoto-u.ac.jp/~sg.www/syorei_s/">2021年度(第16回)素粒子メダル奨励賞</A>
<LI><A HREF="https://www.jsps.go.jp/j-ikushi-prize/">第11回(令和2(2020)年度)日本学術振興会育志賞</A>
<LI>新川高等学校学校賞
</UL>
<DT><H3 FOLDED>Research Grants</H3>
<UL>
<LI>2025年(令和7年)4月 - 2030(令和12年)3月 JSPS KAKENHI Grant Number <A HREF="https://kaken.nii.ac.jp/ja/grant/KAKENHI-PROJECT-25K17402">JP25K17402</A>
<LI>2023年(令和5年)4月 - 2024(令和6年)3月 JSPS KAKENHI Grant Number <A HREF="https://kaken.nii.ac.jp/ja/grant/KAKENHI-PROJECT-22KJ2096">JP22KJ2096</A>
<LI>2021年(令和3年)4月 - 2024(令和6年)3月 JSPS KAKENHI Grant Number <A HREF="https://kaken.nii.ac.jp/ja/grant/KAKENHI-PROJECT-21J30003">JP21J30003</A>
<LI>2018年(平成30年)4月 - 2021年(令和3年)3月 JSPS KAKENHI Grant Number <A HREF="https://kaken.nii.ac.jp/ja/grant/KAKENHI-PROJECT-18J20935/">JP18J20935</A>
</UL>
<DT><H3 FOLDED>Thesis</H3>
<UL>
<LI>2021年(令和3年)3月 博士課程
<br>
``Numerical study of infrared criticality of the supersymmetric Landau--Ginzburg model''
<br>
「超対称ランダウ・ギンツブルグ模型の赤外臨界点の数値的研究」
<br>
<A HREF="http://hdl.handle.net/2324/4474929">九州大学学位論文書誌データベース</A>
[<A HREF="http://dx.doi.org/10.13140/RG.2.2.36216.42246">doi:10.13140/RG.2.2.36216.42246</A>]
[<A HREF="https://inspirehep.net/literature/2034101">INSPIRE</A>]
<LI>2018年(平成30年)3月 修士論文
<br>
「2次元超対称Landau--Ginzburg模型における低エネルギー臨界現象の数値的研究」
</UL>
<DT><H3 FOLDED>Others</H3>
<UL>
<LI>2021年(令和3年)3月 九州大学大学院学位記授与式 修了生総代(博士)
<LI>2016年(平成28年)3月 九州大学学位記授与式 卒業生総代(理学)
</UL>
<DT><H3 FOLDED>Research interests</H3>
量子異常および、量子場理論・超弦理論に対する非摂動的アプローチ
<ul>
<li>カイラルゲージ理論の格子定式化</li>
<li>格子場理論に基づいた超弦理論の数値的研究</li>
<ul>
<li>Landau-Ginzburg/Calabi-Yau 対応</li>
</ul>
<li>グラディエントフロー法</li>
<ul>
<li>くりこみ群との関係および赤外固定点の研究;その格子シミュレーション</li>
<li>くりこみスキームに依存しない Noether カレントの普遍公式</li>
</ul>
<li>摂動論の「病理性」とリサージェンス理論</li>
<ul>
<li>S^1コンパクト化時空におけるリノーマロン問題</li>
<li>原子核共鳴と散乱理論における完全WKB解析</li>
</ul>
<li>一般化対称性とアノマリーマッチングの格子実装</li>
<ul>
<li>高次形式対称性、高次群対称性、非可逆対称性の非摂動的・格子による理解</li>
<li>高次形式ゲージ理論における相構造の格子シミュレーション</li>
</ul>
<li>その他</li>
</ul>
<DT><H3 FOLDED>Papers</H3>
<OL>
<LI>S. Akiyama, O. Morikawa and H. Watanabe???,
<br>
``Monte Carlo Renormalization Group,''
<LI>O. Morikawa and S. Ogawa,
<br>
``Exact WKB method in quantum field theory,''
<br>
``Non-Hermitian quantum physics for HAL QCD potential,''
<LI>O. Morikawa,
<br>
``A new perspective on center vortex in refined Gribov--Zwanziger framework via 2-form gauge fields,''
<LI>T. Fukui, O. Morikawa and H. Suzuki,
<br>
``Gradient flow for winding numbers in real-space representation,''
<LI>O. Morikawa and H. Suzuki,
<br>
``Numerical simulation of finite-temperature (de)confining phase of the 't Hooft partition function,''
<LI>O. Fukushima, R. Hamazaki, O. Morikawa and S. Onoda,
<br>
``ETH,''
<LI>S. Ogawa, T. Hirose and O. Morikawa,
<br>
``Quasinormal modes of stringy and (anti-)de~Sitter black holes via complex scaling method,''
<br>
``Kerr black hole, quasinormal mode, and complex scaling method,''
<LI>I. Kanamori, O. Morikawa, Y. Nagai, Y. Tanizaki, A. Tomiya and H. Watanabe,
<br>
``Topological charge stability under gradient flow in $SU(3)$ lattice gauge theory,''
<LI>I. Kanamori, O. Morikawa, Y. Nagai, Y. Tanizaki, A. Tomiya and H. Watanabe,
<br>
``Numerical Hint for Dyon Condensation at $\theta=2\pi$ via Wilson-'t~Hooft Loops in $SU(2)$ Yang--Mills Theory,''
<LI>M. Tanaka, M. Kitazawa, O. Morikawa and H. Suzuki,
<br>
``Depicting renormalization group flow based on gradient flow,''
<LI>S. Ogawa, T. Hirose and O. Morikawa,
<br>
``Complex scaling approach to quasinormal modes of Schwarzschild and Reissner--Nordstr\"om black holes,''
<br>
[<A HREF="https://arxiv.org/abs/2604.20442">arXiv:2604.20442 [hep-th]</A>]
[<A HREF="https://inspirehep.net/literature/3148097">INSPIRE</A>].
<LI>O. Morikawa, S. Ogawa and S. Onoda,
<br>
``Geometric phase of exceptional point as quantum resonance in complex scaling method,''
<br>
[<A HREF="https://arxiv.org/abs/2512.24528">arXiv:2512.24528 [quant-ph]</A>]
[<A HREF="https://inspirehep.net/literature/3096391">INSPIRE</A>].
<LI>O. Morikawa and S. Ogawa,
<br>
``Exact WKB method for radial Schr\"odinger equation,''
<br>
JPhysA \textbf{59}, 145202 (2026)
[<A HREF="https://doi.org/10.1088/1751-8121/ae57ec">doi:10.1088/1751-8121/ae57ec</A>]
[<A HREF="https://arxiv.org/abs/2510.11766">arXiv:2510.11766 [quant-ph]</A>]
[<A HREF="https://inspirehep.net/literature/3069158">INSPIRE</A>].
<LI>S. Onoda, O. Fukushima, R. Hamazaki and O. Morikawa,
<br>
``Eigenstate Thermalization Hypothesis with Projective Representation,''
<br>
JHEP \textbf{xx}, xx (2026)
[<A HREF="">doi:</A>]
[<A HREF="https://arxiv.org/abs/2509.01931">arXiv:2509.01931 [hep-th]</A>]
[<A HREF="https://inspirehep.net/literature/2966138">INSPIRE</A>].
<LI>O. Morikawa and S. Ogawa,
<br>
``On continuum and resonant spectra from exact WKB analysis,''
<br>
JPhysA \textbf{xx}, xxxxxx (2026)
[<A HREF="https://arxiv.org/abs/2508.09211">arXiv:2508.09211 [quant-ph]</A>]
[<A HREF="https://inspirehep.net/literature/2960127">INSPIRE</A>].
<LI>O. Morikawa and S. Ogawa,
<br>
``Unified exact WKB framework for resonance -- Zel'dovich/complex-scaling regularization and rigged Hilbert space,''
<br>
JHEP \textbf{10}, 49 (2025)
[<A HREF="https://doi.org/10.1007/JHEP10(2025)049">doi:10.1007/JHEP10(2025)049</A>]
[<A HREF="https://arxiv.org/abs/2505.02301">arXiv:2505.02301 [hep-th]</A>]
[<A HREF="https://inspirehep.net/literature/2918155">INSPIRE</A>].
<LI>O. Morikawa and S. Ogawa,
<br>
``Nonperturbative Formulation of Resonances in Quantum Mechanics Based on Exact WKB Method,''
<br>
PTEP \textbf{2025}, no.10, 103B01 (2025)
[<A HREF="https://doi.org/10.1093/ptep/ptaf120">doi:10.1093/ptep/ptaf120</A>]
[<A HREF="https://arxiv.org/abs/2503.18741">arXiv:2503.18741 [hep-th]</A>]
[<A HREF="https://inspirehep.net/literature/2903299">INSPIRE</A>].
<LI>O. Morikawa and H. Suzuki,
<br>
``Direct Monte Carlo computation of the 't~Hooft partition function,''
<br>
PTEP \textbf{2025}, no.6, 063B04 (2025)
[<A HREF="https://doi.org/10.1093/ptep/ptaf072">doi:10.1093/ptep/ptaf072</A>]
[<A HREF="https://arxiv.org/abs/2501.07042">arXiv:2501.07042 [hep-lat]</A>]
[<A HREF="https://inspirehep.net/literature/2867838">INSPIRE</A>].
<LI>M. Abe, O. Morikawa and H. Suzuki,
<br>
``Monte Carlo simulation of the $SU(2)/\mathbb{Z}_2$ Yang--Mills theory,''
<br>
PTEP \textbf{2025}, no.6, 063B03 (2025)
[<A HREF="https://doi.org/10.1093/ptep/ptaf075">doi:10.1093/ptep/ptaf075</A>]
[<A HREF="https://arxiv.org/abs/2501.00286">arXiv:2501.00286 [hep-lat]</A>]
[<A HREF="https://inspirehep.net/literature/2864288">INSPIRE</A>].
<LI>O. Morikawa and H. Suzuki,
<br>
``Winding number on 3D lattice,''
<br>
[<A HREF="https://arxiv.org/abs/2412.03888">arXiv:2412.03888 [hep-lat]</A>]
[<A HREF="https://inspirehep.net/literature/2856216">INSPIRE</A>].
<LI>O. Morikawa, S. Onoda and H. Suzuki,
<br>
``Yet another lattice formulation of 2D $U(1)$ chiral gauge theory via bosonization,''
<br>
PTEP \textbf{2024}, no.6, 063B01 (2024)
[<A HREF="https://doi.org/10.1093/ptep/ptae075">doi:10.1093/ptep/ptae075</A>]
[<A HREF="https://arxiv.org/abs/2403.03420">arXiv:2403.03420 [hep-lat]</A>]
[<A HREF="https://inspirehep.net/literature/2765775">INSPIRE</A>].
<LI>Y. Honda, O. Morikawa, S. Onoda and H. Suzuki,
<br>
``Lattice realization of the axial $U(1)$ non-invertible symmetry,''
<br>
PTEP \textbf{2024}, no.4, 043B04 (2024)
[<A HREF="https://doi.org/10.1093/ptep/ptae040">doi:10.1093/ptep/ptae040</A>]
[<A HREF="https://arxiv.org/abs/2401.01331">arXiv:2401.01331 [hep-lat]</A>]
[<A HREF="https://inspirehep.net/literature/2742781">INSPIRE</A>].
<LI>M. Abe, O. Morikawa, S. Onoda, H. Suzuki and Y. Tanizaki,
<br>
``Magnetic operators in 2D compact scalar field theories on the lattice,''
<br>
PTEP \textbf{2023}, no.7, 073B01 (2023)
[<A HREF="https://doi.org/10.1093/ptep/ptad078">doi:10.1093/ptep/ptad078</A>]
[<A HREF="https://arxiv.org/abs/2304.14815">arXiv:2304.14815 [hep-lat]</A>]
[<A HREF="https://inspirehep.net/literature/2655273">INSPIRE</A>].
<LI>M. Abe, O. Morikawa and S. Onoda,
<br>
``Note on lattice description of generalized symmetries in $SU(N)/\mathbb{Z}_N$ gauge theories,''
<br>
PRD \textbf{108}, 014506 (2023)
[<A HREF="https://doi.org/10.1103/PhysRevD.108.014506">doi:10.1103/PhysRevD.108.014506</A>]
[<A HREF="https://arxiv.org/abs/2304.11813">arXiv:2304.11813 [hep-th]</A>]
[<A HREF="https://inspirehep.net/literature/2653688">INSPIRE</A>].
<LI>M. Abe, O. Morikawa, S. Onoda, H. Suzuki and Y. Tanizaki,
<br>
``Topology of $SU(N)$ lattice gauge theories coupled with $\mathbb{Z}_N$ $2$-form gauge fields,''
<br>
JHEP \textbf{08}, 118 (2023)
[<A HREF="https://doi.org/10.1007/JHEP08(2023)118">doi:10.1007/JHEP08(2023)118</A>]
[<A HREF="https://arxiv.org/abs/2303.10977">arXiv:2303.10977 [hep-lat]</A>]
[<A HREF="https://inspirehep.net/literature/2644173">INSPIRE</A>].
<LI>N. Kan, O. Morikawa, Y. Nagoya and H. Wada,
<br>
``Higher-group structure in lattice Abelian gauge theory under instanton-sum modification,''
<br>
EPJC \textbf{83}, no.6, 481 (2023)
[<A HREF="https://doi.org/10.1140/epjc/s10052-023-11616-6">doi:10.1140/epjc/s10052-023-11616-6</A>]
[<A HREF="https://arxiv.org/abs/2302.13466">arXiv:2302.13466 [hep-th]</A>]
[<A HREF="https://inspirehep.net/literature/2636720">INSPIRE</A>],
<br>
Erratum: EPJC \textbf{84}, no.1, 22 (2024)
[<A HREF="https://doi.org/10.1140/epjc/s10052-024-12386-5">doi:10.1140/epjc/s10052-024-12386-5</A>].
<LI>O. Morikawa, H. Wada and S. Yamaguchi,
<br>
``Phase structure of linear quiver gauge theories from anomaly matching,''
<br>
PRD \textbf{107}, 045020 (2023)
[<A HREF="https://doi.org/10.1103/PhysRevD.107.045020">doi:10.1103/PhysRevD.107.045020</A>]
[<A HREF="https://arxiv.org/abs/2211.12079">arXiv:2211.12079 [hep-th]</A>]
[<A HREF="https://inspirehep.net/literature/2513713">INSPIRE</A>].
<LI>M. Abe, O. Morikawa and H. Suzuki,
<br>
``Fractional topological charge in lattice Abelian gauge theory,''
<br>
PTEP \textbf{2023}, no.2, 023B03 (2023)
[<A HREF="https://doi.org/10.1093/ptep/ptad009">doi:10.1093/ptep/ptad009</A>]
[<A HREF="https://arxiv.org/abs/2210.12967">arXiv:2210.12967 [hep-th]</A>]
[<A HREF="https://inspirehep.net/literature/2169563">INSPIRE</A>].
<LI>M. Ashie, O. Morikawa, H. Suzuki and H. Takaura,
<br>
``More on the infrared renormalon in $SU(N)$ QCD(adj.) on $\mathbb{R}^3\times S^1$,''
<br>
PTEP \textbf{2020}, no.9, 093B02 (2020)
[<A HREF="https://doi.org/10.1093/ptep/ptaa096">doi:10.1093/ptep/ptaa096</A>]
[<A HREF="https://arxiv.org/abs/2005.07407">arXiv:2005.07407 [hep-th]</A>]
[<A HREF="https://inspirehep.net/literature/1796597">INSPIRE</A>].
<LI>O. Morikawa and H. Takaura,
<br>
``Identification of perturbative ambiguity canceled against bion,''
<br>
PLB \textbf{807}, 135570 (2020)
[<A HREF="https://doi.org/10.1016/j.physletb.2020.135570">doi:10.1016/j.physletb.2020.135570</A>]
[<A HREF="https://arxiv.org/abs/2003.04759">arXiv:2003.04759 [hep-th]</A>]
[<A HREF="https://inspirehep.net/literature/1784794">INSPIRE</A>].
<LI>K. Ishikawa, O. Morikawa, K. Shibata and H. Suzuki,
<br>
``Vacuum energy of the supersymmetric $\mathbb{C}P^{N-1}$ model on $\mathbb{R}\times S^1$ in the $1/N$ expansion,''
<br>
PTEP \textbf{2020}, no.6, 063B02 (2020)
[<A HREF="https://doi.org/10.1093/ptep/ptaa066">doi:10.1093/ptep/ptaa066</A>]
[<A HREF="https://arxiv.org/abs/2001.07302">arXiv:2001.07302 [hep-th]</A>]
[<A HREF="https://inspirehep.net/literature/1776764">INSPIRE</A>].
<LI>K. Ishikawa, O. Morikawa, K. Shibata, H. Suzuki and H. Takaura,
<br>
``Renormalon structure in compactified spacetime,''
<br>
PTEP \textbf{2020}, no.1, 013B01 (2020)
[<A HREF="https://doi.org/10.1093/ptep/ptz147">doi:10.1093/ptep/ptz147</A>]
[<A HREF="https://arxiv.org/abs/1909.09579">arXiv:1909.09579 [hep-th]</A>]
[<A HREF="https://inspirehep.net/literature/1755207">INSPIRE</A>].
<LI>M. Ashie, O. Morikawa, H. Suzuki, H. Takaura and K. Takeuchi,
<br>
``Infrared renormalon in $SU(N)$ QCD(adj.) on $\mathbb{R}^3\times S^1$,''
<br>
PTEP \textbf{2020}, no.2, 023B01 (2020)
[<A HREF="https://doi.org/10.1093/ptep/ptz157">doi:10.1093/ptep/ptz157</A>]
[<A HREF="https://arxiv.org/abs/1909.05489">arXiv:1909.05489 [hep-th]</A>]
[<A HREF="https://inspirehep.net/literature/1753705">INSPIRE</A>].
<LI>K. Ishikawa, O. Morikawa, A. Nakayama, K. Shibata, H. Suzuki and H. Takaura,
<br>
``Infrared renormalon in the supersymmetric $\mathbb{C}P^{N-1}$ model on $\mathbb{R}\times S^1$,''
<br>
PTEP \textbf{2020}, no.2, 023B10 (2020)
[<A HREF="https://doi.org/10.1093/ptep/ptaa002">doi:10.1093/ptep/ptaa002</A>]
[<A HREF="https://arxiv.org/abs/1908.00373">arXiv:1908.00373 [hep-th]</A>]
[<A HREF="https://inspirehep.net/literature/1747531">INSPIRE</A>].
<LI>O. Morikawa,
<br>
``Continuum limit in numerical simulations of the $\mathcal{N}=2$ Landau--Ginzburg model,''
<br>
PTEP \textbf{2019} no.10, 103B03 (2019)
[<A HREF="https://doi.org/10.1093/ptep/ptz107">doi:10.1093/ptep/ptz107</A>]
[<A HREF="https://arxiv.org/abs/1906.00653">arXiv:1906.00653 [hep-lat]</A>]
[<A HREF="https://inspirehep.net/literature/1737855">INSPIRE</A>].
<LI>O. Morikawa,
<br>
``Numerical study of the $\mathcal{N}=2$ Landau--Ginzburg model with two superfields,''
<br>
JHEP \textbf{12}, 045 (2018)
[<A HREF="https://doi.org/10.1007/JHEP12(2018)045">doi:10.1007/JHEP12(2018)045</A>]
[<A HREF="https://arxiv.org/abs/1810.02519">arXiv:1810.02519 [hep-lat]</A>]
[<A HREF="https://inspirehep.net/literature/1697158">INSPIRE</A>].
<LI>A. Kasai, O. Morikawa and H. Suzuki,
<br>
``Gradient flow representation of the four-dimensional $\mathcal{N}=2$ super Yang–Mills supercurrent,''
<br>
PTEP \textbf{2018}, no.11, 113B02 (2018)
[<A HREF="https://doi.org/10.1093/ptep/pty117">doi:10.1093/ptep/pty117</A>]
[<A HREF="https://arxiv.org/abs/1808.07300">arXiv:1808.07300 [hep-lat]</A>]
[<A HREF="https://inspirehep.net/literature/1690145">INSPIRE</A>].
<LI>O. Morikawa and H. Suzuki,
<br>
``Numerical study of the $\mathcal{N}=2$ Landau–Ginzburg model,''
<br>
PTEP \textbf{2018}, no.8, 083B05 (2018)
[<A HREF="https://doi.org/10.1093/ptep/pty088">doi:10.1093/ptep/pty088</A>]
[<A HREF="https://arxiv.org/abs/1805.10735">arXiv:1805.10735 [hep-lat]</A>]
[<A HREF="https://inspirehep.net/literature/1675017">INSPIRE</A>].
<LI>O. Morikawa and H. Suzuki,
<br>
``Axial $U(1)$ anomaly in a gravitational field via the gradient flow,''
<br>
PTEP \textbf{2018}, no.7, 073B02 (2018)
[<A HREF="https://doi.org/10.1093/ptep/pty073">doi:10.1093/ptep/pty073</A>]
[<A HREF="https://arxiv.org/abs/1803.04132">arXiv:1803.04132 [hep-th]</A>]
[<A HREF="https://inspirehep.net/literature/1662067">INSPIRE</A>].
<LI>H. Makino, O. Morikawa and H. Suzuki,
<br>
``Gradient flow and the Wilsonian renormalization group flow,''
<br>
PTEP \textbf{2018}, no.5, 053B02 (2018)
[<A HREF="https://doi.org/10.1093/ptep/pty050">doi:10.1093/ptep/pty050</A>]
[<A HREF="https://arxiv.org/abs/1802.07897">arXiv:1802.07897 [hep-th]</A>]
[<A HREF="https://inspirehep.net/literature/1656823">INSPIRE</A>],
<br>
Erratum: PTEP \textbf{2021}, no.9, 099201 (2021)
[<A HREF="https://doi.org/10.1093/ptep/ptab096">doi:10.1093/ptep/ptab096</A>]
[<A HREF="https://inspirehep.net/literature/1952960">INSPIRE</A>].
<LI>H. Makino, O. Morikawa and H. Suzuki,
<br>
``One-loop perturbative coupling of $A$ and $A_\star$ through the chiral overlap operator,''
<br>
PTEP \textbf{2017}, no.6, 063B08 (2017)
[<A HREF="https://doi.org/10.1093/ptep/ptx085">doi:10.1093/ptep/ptx085</A>]
[<A HREF="https://arxiv.org/abs/1704.04862">arXiv:1704.04862 [hep-lat]</A>]
[<A HREF="https://inspirehep.net/literature/1591719">INSPIRE</A>].
<LI>H. Makino and O. Morikawa,
<br>
``Lorentz symmetry violation in the fermion number anomaly with the chiral overlap operator,''
<br>
PTEP \textbf{2016}, no.12, 123B06 (2016)
[<A HREF="https://doi.org/10.1093/ptep/ptw183">doi:10.1093/ptep/ptw183</A>]
[<A HREF="https://arxiv.org/abs/1609.08376">arXiv:1609.08376 [hep-lat]</A>]
[<A HREF="https://inspirehep.net/literature/1488284">INSPIRE</A>].
</OL>
<DT><H3 FOLDED>Proceedings</H3>
<OL>
<LI>O. Morikawa and H. Suzuki,
<br>
``Direct numerical simulation of 't Hooft partition function and (de)confining phase,''
<br>
PoS \textbf{LATTICE2025}, 182 (2026)
[<A HREF="https://doi.org/10.22323/1.518.0182">doi:10.22323/1.518.0182</A>]
[<A HREF="https://arxiv.org/abs/2601.20159">arXiv:2601.20159 [hep-lat]</A>]
[<A HREF="https://inspirehep.net/literature/3112510">INSPIRE</A>].
<br>
Talk presented at the 42nd International Symposium on Lattice Field Theory (Lattice2025),
November 2nd - 8th, 2025,
Tata Institute of Fundamental Research (TIFR), Mumbai.
<LI>O. Morikawa, S. Onoda and H. Suzuki,
<br>
``Novel Lattice Formulation of 2D Chiral Gauge Theory via Bosonization,''
<br>
PoS \textbf{LATTICE2024}, 363 (2025)
[<A HREF="https://doi.org/10.22323/1.466.0363">doi:10.22323/1.466.0363</A>]
[<A HREF="https://arxiv.org/abs/2501.18949">arXiv:2501.18949 [hep-lat]</A>]
[<A HREF="https://inspirehep.net/literature/2874431">INSPIRE</A>].
<br>
Talk presented at the 41st International Symposium on Lattice Field Theory (Lattice2024),
July 28th - August 3rd, 2024,
The University of Liverpool.
<LI>M. Abe and O. Morikawa,
<br>
``Numerical simulation of fractional topological charge in $SU(N)$ gauge theory coupled with $\mathcal{Z}_N$ $2$-form gauge fields,''
<br>
PoS \textbf{LATTICE2024}, 380 (2025)
[<A HREF="https://doi.org/10.22323/1.466.0380">doi:10.22323/1.466.0380</A>]
[<A HREF="https://arxiv.org/abs/2501.11438">arXiv:2501.11438 [hep-lat]</A>]
[<A HREF="https://inspirehep.net/literature/2870957">INSPIRE</A>].
<br>
Talk presented at the 41st International Symposium on Lattice Field Theory (Lattice2024),
July 28th - August 3rd, 2024,
The University of Liverpool.
<LI>O. Morikawa, M. Tanaka, M. Kitazawa and H. Suzuki,
<br>
``Lattice study of RG fixed point based on gradient flow in $3$D $O(N)$ sigma model,''
<br>
PoS \textbf{LATTICE2024}, 349 (2025)
[<A HREF="https://doi.org/10.22323/1.466.0349">doi:10.22323/1.466.0349</A>]
[<A HREF="https://arxiv.org/abs/2410.19425">arXiv:2410.19425 [hep-lat]</A>]
[<A HREF="https://inspirehep.net/literature/2842788">INSPIRE</A>].
<br>
Talk presented at the 41st International Symposium on Lattice Field Theory (Lattice2024),
July 28th - August 3rd, 2024,
The University of Liverpool.
<LI>M. Abe, O. Morikawa, S. Onoda, H. Suzuki and Y. Tanizaki,
<br>
``Lattice construction of mixed 't Hooft anomaly with higher-form symmetry,''
<br>
PoS \textbf{LATTICE2023}, 361 (2024)
[<A HREF="https://doi.org/10.22323/1.453.0361">doi:10.22323/1.453.0361</A>]
[<A HREF="https://arxiv.org/abs/2401.00495">arXiv:2401.00495 [hep-lat]</A>]
[<A HREF="https://inspirehep.net/literature/2742422">INSPIRE</A>].
<br>
Talk presented at the 40th International Symposium on Lattice Field Theory (Lattice2023),
July 31st - August 4th, 2023,
Fermi National Accelerator Laboratory.
<LI>M. Abe, N. Kan, O. Morikawa, Y. Nagoya, S. Onoda and H. Wada,
<br>
``Higher-group symmetry in lattice gauge theories with restricted topological sectors,''
<br>
PoS \textbf{LATTICE2023}, 365 (2024)
[<A HREF="https://doi.org/10.22323/1.453.0365">doi:10.22323/1.453.0365</A>]
[<A HREF="https://arxiv.org/abs/2310.01787">arXiv:2310.01787 [hep-lat]</A>]
[<A HREF="https://inspirehep.net/literature/2705353">INSPIRE</A>].
<br>
Talk presented at the 40th International Symposium on Lattice Field Theory (Lattice2023),
July 31st - August 4th, 2023,
Fermi National Accelerator Laboratory.
<LI>O. Morikawa,
<br>
``Numerical study of ADE-type $\mathcal{N}=2$ Landau-Ginzburg models,''
<br>
PoS \textbf{LATTICE2019}, 145 (2020)
[<A HREF="https://doi.org/10.22323/1.363.0145">doi:10.22323/1.363.0145</A>]
[<A HREF="https://arxiv.org/abs/1908.03411">arXiv:1908.03411 [hep-lat]</A>]
[<A HREF="https://inspirehep.net/literature/1748706">INSPIRE</A>].
<br>
Talk presented at the 37th International Symposium on Lattice Field Theory (Lattice2019),
16-22 June 2019, Wuhan, China.
<LI>H. Makino, O. Morikawa and H. Suzuki,
<br>
``One-loop perturbative coupling of $A$ and $A_\star$ through the chiral overlap operator,''
<br>
EPJ Web Conf.\ \textbf{175}, 11013 (2018)
[<A HREF="https://doi.org/10.1051/epjconf/201817511013">doi:10.1051/epjconf/201817511013</A>]
[<A HREF="https://arxiv.org/abs/1710.00536">arXiv:1710.00536 [hep-lat]</A>]
[<A HREF="https://inspirehep.net/literature/1628108">INSPIRE</A>].
<br>
Talk presented at the 35th International Symposium on Lattice Field Theory (Lattice2017),
18-24 June 2017, Granada, Spain.
</OL>
<DT><H3 FOLDED>学術雑誌等又は商業誌における解説</H3>
<OL>
<LI>O. Morikawa and O. Fukushima,
<br>
``Preface,''
<br>
IJMPA \textbf{41}, Issue 07, 2602001 (2026)
[<A HREF="https://doi.org/10.1142/S0217751X2602001X">doi:10.1142/S0217751X2602001X</A>]
<br>
<A HREF="https://www.worldscientific.com/toc/ijmpa/41/07">Special Issue: Non-perturbative Methods in Quantum Field Theory</A>.
</OL>
<DT><H3 FOLDED>Talks (English)</H3>
<OL>
<LI>O. Morikawa,
<br>
``Unified exact WKB framework for quantum resonance and scattering theory,''
<br>
KEK Theory Workshop 2025,
高エネルギー加速器研究機構(KEK)、
2025年12月16日
<LI>O. Morikawa and H. Suzuki,
<br>
``Direct numerical simulation of 't~Hooft partition function and (de)confining phase,''
<br>
the 42nd International Symposium on Lattice Field Theory (Lattice2025),
Tata Institute of Fundamental Research (TIFR),
2025年11月2日
<LI>O. Morikawa,
<br>
``Resonances, Spectral Theory, and the Resurgent Structure,''
<br>
Japan-UK Workshop on Quantum Gravity,
理研(神戸)、
2025年9月23日
<LI>I. Kanamori, O. Morikawa ,Y. Nagai, Y. Tanizaki, A. Tomiya and H. Watanabe,
<br>
``Lattice simulation of Wilson--'t~Hooft classification in $SU(2)$ Yang--Mills theory with $\theta$ term,''
<br>
iTHEMS NOW&NEXT 2025,
ポスター発表、
理研iTHEMS、
2025年7月24日
<LI>O. Morikawa,
<br>
``Lattice implementation of generalized symmetry and 't Hooft anomaly,''
<br>
NCTS-iTHEMS Joint Workshop on Matters to Spacetime: Symmetries and Geometry,
National Taiwan University,
2024年8月29日
<LI>M. Tanaka, M. Kitazawa, ○O. Morikawa and H. Suzuki,
<br>
``Lattice study of RG fixed point based on gradient flow in $3$D $O(N)$ sigma model,''
<br>
the 41st International Symposium on Lattice Field Theory (Lattice2024),
The University of Liverpool,
2024年7月28日
<LI>O. Morikawa,
<br>
``Symmetry and anomaly in lattice gauge theory,''
<br>
iTHEMS NOW&NEXT 2024,
ポスター発表、
理研iTHEMS、
2024年7月19日
<LI>O. Morikawa,
<br>
``Lattice study of RG fixed point based on gradient flow in 3D O(N) sigma model,''
<br>
KEK Theory Workshop 2023,
高エネルギー加速器研究機構(KEK)、
2023年11月30日
<LI>O. Morikawa,
<br>
``How to construct generalized symmetries and 't Hooft anomaly from lattice viewpoint,''
<br>
the International Workshop on Theoretical Particle Physics 2023 (HET Camp 2023),
南部陽一郎ホール、大阪大学、
2023年9月26日
<LI>M. Abe, N. Kan, ○O. Morikawa, Y. Nagoya, S. Onoda and H. Wada,
<br>
``Higher-group symmetry in lattice gauge theories with restricted topological sectors,''
<br>
the 40th International Symposium on Lattice Field Theory (Lattice2023),
Fermi National Accelerator Laboratory,
2023年7月31日
<LI>O. Morikawa,
<br>
``Perturbative ambiguities in compactified spacetime and resurgence structure,''
<br>
Potential Toolkit to Attack Nonperturbative Aspects of QFT
-Resurgence and related topics-,
オンライン開催、
2020年9月24日
<LI>O. Morikawa,
<br>
``Resurgence structure on compactified spacetime with twisted boundary condition,''
<br>
Asia-Pacific Symposium for Lattice Field Theory (APLAT 2020),
オンライン開催、
2020年8月7日
<LI>O. Morikawa,
<br>
``Vacuum energy of the SUSY $\mathbb{C}P^{N-1}$ model on $\mathbb{R}\times S^1$,''
<br>
CP\textasciicircum N model: recent developments and future directions,
慶応大学日吉キャンパス、
2020年1月23日
<LI>O. Morikawa,
<br>
``Infrared renormalon in the supersymmetric $\mathbb{C}P^{N-1}$ model on $\mathbb{R}\times S^1$,''
<br>
KEK Theory Workshop 2019,
ポスター発表、
高エネルギー加速器研究機構(KEK)、
2019年12月5日
<LI>O. Morikawa,
<br>
``Numerical study of ADE-type $\mathcal{N}=2$ Landau-Ginzburg models,''
<br>
the 37th International Symposium on Lattice Field Theory (Lattice2019),
Hilton Hotel Wuhan Riverside, Wuhan, China,
2019年6月23日
<LI>O. Morikawa,
<br>
``Numerical study of the $\mathcal{N}=2$ Landau--Ginzburg model,''
<br>
the 4th International Workshop on ``Higgs as a Probe of New Physics'' (HPNP2019),
ポスター発表、
大阪大学豊中キャンパス、
2019年2月21日
<LI>O. Morikawa,
<br>
``Numerical study of the $\mathcal{N}=2$ Landau--Ginzburg model,''
<br>
KEK Theory Workshop 2018,
ポスター発表、
高エネルギー加速器研究機構(KEK)、
2018年12月19日
<LI>H. Makino, ○O. Morikawa, and H. Suzuki,
<br>
``One-loop perturbative coupling of $A$ and $A_\star$ through the chiral overlap operator,''
<br>
the 35th International Symposium on Lattice Field Theory (Lattice2017),
Palace of Congress, Granada, Spain,
2017年6月23日
<LI>H. Makino and ○O. Morikawa,
<br>
``Lorentz symmetry violation in the fermion number anomaly with the chiral overlap operator,''
<br>
KEK Theory Workshop 2016,
ポスター発表、
高エネルギー加速器研究機構(KEK)、
2016年12月7日
</OL>
<DT><H3 FOLDED>Talks (Japanese)</H3>
<OL>
<LI>森川億人、小川翔也、小野田壮真、
<br>
「複素スケーリング法による量子共鳴としての例外点の幾何学的位相」
<br>
日本物理学会2026年春季大会、
オンライン開催、
2026年3月23日
<LI>森川億人、小川翔也、
<br>
「動径Schrödinger方程式における複素解析構造とリサージェンス」
<br>
日本物理学会2026年春季大会、
オンライン開催、
2026年3月23日
<LI>森川億人、
<br>
「格子QCDシミュレーションによる閉じ込め相の研究」
<br>
日本学術振興会育志賞受賞者交流会、
東京大学、
2025年11年28日
<LI>森川億人、小川翔也、
<br>
「量子力学的共鳴を扱うための統一的な完全WKB解析の枠組み」
<br>
日本物理学会第80回年次大会、
広島大学、
2025年9月19日
<LI>森川億人、
<br>
「共鳴物理の完全WKB法による非摂動解析」
<br>
熱場の量子論とその応用、
東京大学物性研究所、
2025年9月3日
<LI>森川億人、
<br>
「完全WKB解析を用いた共鳴現象の非摂動論的理解」
<br>
場の理論と弦理論2025、
京都大学基礎物理学研究所、
2025年8月1日
<LI>森川億人、
<br>
``Winding number on 3D lattice,''
<br>
JuliaQCD ユーザーブリーフィング、
筑波大学東京キャンパス、
2025年5月16日
<LI>森川億人、
<br>
``Lattice non-perturbative understanding of generalized symmetries and applications,''
<br>
日本物理学会2025年春季大会、
オンライン開催、
2025年3月18日
<LI>森川億人、小川翔也、
<br>
「完全WKB解析による準安定共鳴状態の非摂動定式化」
<br>
日本物理学会第79回年次大会、
北海道大学、
2024年9月18日
<LI>森川億人、
<br>
``Complete implementation of generalized symmetries on the lattice,''
<br>
離散的手法による場と時空のダイナミクス2024、
東京工業大学、
2024年9月3日
<LI>森川億人、
<br>
「格子ゲージ理論における一般化対称性とトポロジカル現象」
<br>
駒場研究会 場の理論への非摂動的アプローチ、
東京大学、
2024年3月30日
<LI>森川億人、
<br>
「格子場の理論におけるgeneralized symmetryの研究」
<br>
日本物理学会2024年春季大会、
オンライン開催、
2024年3月18日
<LI>阿部元一、簡直人、○森川億人、名古屋雄大、小野田壮真、和田博貴、
<br>
「インスタントン数の制限された格子ゲージ理論における高次群対称性」
<br>
日本物理学会第78回年次大会、
東北大学、
2023年9月16日
<LI>森川億人、
<br>
「N=2ランダウ・ギンツブルグ模型における標的空間の変形の数値的研究」
<br>
日本物理学会2021年秋季大会、
オンライン開催、
2021年9月14日
<LI>芦江誠大、○森川億人、鈴木博、高浦大雅、
<br>
``Renormalon in SU(N) QCD(adj.) on compactified spacetime,''
<br>
日本物理学会2020年秋季大会、
オンライン開催、
2020年9月16日
<LI>森川億人、高浦大雅、
<br>
``Identification of perturbative ambiguity canceled against bion,''
<br>
日本物理学会2020年秋季大会、
オンライン開催、
2020年9月14日
<LI>森川億人、
<br>
「S^1コンパクト化された時空でのリサージェンス構造」
<br>
素粒子若手オンライン研究会、
オンライン開催、
2020年8月28日
<LI>森川億人、
<br>
「コンパクト化された時空における摂動論の不定性とリサージェンス構造」
<br>
熱場の量子論とその応用、
ポスター発表、
オンライン開催、
2020年8月25日
<LI>石川航輔、○森川億人、中山聖、柴田和弥、鈴木博、高浦大雅、
<br>
「RxS^1上のCP^{N-1}模型におけるIRリノーマロン」
<br>
日本物理学会第75回年次大会、
名古屋大学(現地開催なし)、
2020年3月16日
<LI>森川億人、
<br>
``Infrared renormalon in the CP^{N-1} model on RxS^1,''
<br>
理研-九大ジョイントワークショップ「数理が紡ぐ素粒子・原子核・宇宙」、
九州大学伊都キャンパス、
2019年12月23日
<LI>森川億人、
<br>
「N=2 Landau-Ginzburg模型におけるスケーリング次元の連続極限と精密測定」
<br>
日本物理学会2019年秋季大会、
山形大学小白川キャンパス、
2019年9月18日
<LI>笠井彩、○森川億人、鈴木博、
<br>
``Gradient flow representation of the 4D N=2 SYM supercurrent,''
<br>
日本物理学会第74回年次大会、
九州大学伊都キャンパス、
2019年3月17日
<LI>森川億人、
<br>
``Numerical study of the N=2 Landau-Ginzburg model,''
<br>
理研-九大ワークショップ --素粒子・原子核から宇宙へ--、
理化学研究所神戸キャンパス、
2018年11月21日
<LI>森川億人、
<br>
「複数超場を含むN=2 Landau--Ginzburg模型の数値的研究」
<br>
日本物理学会2018年秋季大会、
信州大学、
2018年9月15日
<LI>森川億人、鈴木博、
<br>
``Numerical study of N=2 Landau–Ginzburg models,''
<br>
日本物理学会第73回年次大会、
東京理科大学野田キャンパス、
2018年3月23日
<LI>森川億人、
<br>
「2次元超対称Landau-Ginzburg模型の数値的研究」
<br>
第123回物理学会九州支部例会、
鹿児島大学、
2017年12月9日
<LI>森川億人、
<br>
``Numerical simulation of the N=2 Landau-Ginzburg model,''
<br>
瀬戸内サマーインスティテュート(SSI2017)、
山口県由宇青少年自然の家、
2017年9月28日
<LI>森川億人、鈴木博、
<br>
「N=2ランダウ・ギンツブルグ模型の数値シミュレーション」
<br>
日本物理学会2017年秋季大会、
宇都宮大学、
2017年9月14日
<LI>牧野広樹、○森川億人、
<br>
``Lorentz symmetry violation in the fermion number anomaly with the chiral overlap operator,''
<br>
日本物理学会第72回年次大会、
大阪大学豊中キャンパス、
2017年3月17日
<LI>牧野広樹、○森川億人、
<br>
「カイラル・オーバーラップ演算子を用いたフェルミオン数アノマリーのローレンツ対称性の破れ」
<br>
第122回物理学会九州支部例会、
福岡大学七隈キャンパス、
2016年12月10日
</OL>
<DT><H3 FOLDED>Seminars</H3>
<OL>
<LI>``Infrared Renormalons, Bion Ambiguities, and Resurgence in Compactified Gauge Theories,''
<br>
拓殖大学、
2026年3月17日
<LI>``Towards a nonperturbative formulation of non-Hermitian quantum physics: resonance, complex scaling, and resurgence analysis,''
<br>
拓殖大学、
2026年1月21日
<LI>``What is quantum resonance? ---a viewpoint from resurgence theory---,''
<br>
神戸大学、
2025年11月26日
<LI>``Exact WKB framework for quantum resonance and spectral theory,''
<br>
東北大学、
2025年11月21日
<LI>``Non-perturbative Confirmation of the Wilson-Fisher Fixed Point via Gradient Flow in 3D O(N) Sigma Model,''
<br>
京都大学、
2025年10月29日
<LI>``Exact WKB as unified analytic structure for resonance physics,''
<br>
RIKEN iTHEMS Math-Phys Seminar,
2025年6月27日
<LI>``Non-perturbative formulation of resonant quantum mechanics within unified exact WKB framework,''
<br>
RIKEN iTHEMS Asymptotics in Astrophysics Seminar,
2025年5月28日
<LI>``Winding number on 3D lattice,''
<br>
CREST Research Seminar on ``Theoretical studies of topological phases of matter,''
2025年5月2日
<LI>``Computational lattice foundation of generalized symmetry and its applications,''