-
Notifications
You must be signed in to change notification settings - Fork 0
/
archives.html
3659 lines (3645 loc) · 178 KB
/
archives.html
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>
<html lang="ja">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-72643447-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-72643447-1');
</script>
<!-- End of global site tag (gtag.js) - Google Analytics -->
<title>More is different - ARCHIVES</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Kenji Harada">
<meta name="author" content="Kenji Harada">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- css -->
<style>
.link-muted a:link {
color: #000;
}
.link-muted a:hover {
color: #999;
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="https://www-np.acs.i.kyoto-u.ac.jp/~harada/index.html">Kenji Harada</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto">
<li class="nav-item">
<a class="nav-link" href="https://www-np.acs.i.kyoto-u.ac.jp/~harada/index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www-np.acs.i.kyoto-u.ac.jp/~harada/study/index.html">Study</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www-np.acs.i.kyoto-u.ac.jp/~harada/education/index.html">Education</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www-np.acs.i.kyoto-u.ac.jp/~harada/archives.html">Archives</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www-np.acs.i.kyoto-u.ac.jp/~harada/index-en.html">[English]</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main role="main">
<div class="py-5 bg-light">
<div class="container">
<h2 class="text-center" style="padding:0 0 18px 0">ARCHIVES</h2>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article1" aria-expanded="false"
aria-controls="collapse_article1">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2022年 9月 12日</div>  
<a href="#article1">
<strong>日本物理学会 2022年秋季大会(東京工業大学)にて研究発表。</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article1">
<div class="card-body">
<p class="card-text">
<p>
<a href="http://www.jps.or.jp/activities/meetings/index.php">日本物理学会 2022年秋季大会(東京工業大学)</a>
</p>
<p>
日程: 2020年9月12日から9月15日
</p>
<ul>
<li>講演(13pH113-5) "ネットワーク構造最適化を含んだツリーテンソルネットワーク法の開発" (共同研究者:引原俊哉, 上田宏, 奥西巧一, 西野友年)</li>
<li>講演(13pH113-6) "テンソルネットワーク状態を用いた教師なし生成モデルのネットワーク構造の最適化" (共同研究者:大久保毅, 川島直輝)</li>
<li>講演(13pH113-8) "GPUによる2次元MERAの変分最適化の加速" (共同研究者:真鍋秀隆)</li>
<li>講演(14pH112-1) "行列積状態を用いたテンソル化深層学習における最適ランクの推定" (共同研究者:阿蘇品侑雅)</li>
</ul>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article2" aria-expanded="false"
aria-controls="collapse_article2">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2022年 9月 8日</div>  
<a href="#article2">
<strong>Paper "Automatic structural optimization of tree tensor networks" is submitted to arXiv.</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article2">
<div class="card-body">
<p class="card-text">
<dl class="dl-horizontal">
<dt>Title</dt>
<dd>Automatic structural optimization of tree tensor networks</dd>
<dt>Author</dt>
<dd>Toshiya Hikihara, Hiroshi Ueda, Kouichi Okunishi, Kenji Harada, and Tomotoshi Nishino</dd>
<dt>Abstract</dt>
<dd>
Tree tensor network (TTN) provides an essential theoretical framework for the
practical simulation of quantum many-body systems, where the network structure
defined by the connectivity of the isometry tensors plays a crucial role in
improving its approximation accuracy. In this paper, we propose a TTN algorithm
that enables us to automatically optimize the network structure by local
reconnections of isometries to suppress the bipartite entanglement entropy on
their legs. The algorithm can be seamlessly implemented to such a conventional
TTN approach as density-matrix renormalization group. We apply the algorithm to
the inhomogeneous antiferromagnetic Heisenberg spin chain having a hierarchical
spatial distribution of the interactions. We then demonstrate that the
entanglement structure embedded in the ground-state of the system can be
efficiently visualized as a perfect binary tree in the optimized TTN. Possible
improvements and applications of the algorithm are also discussed.
</dd>
<dt>Comments</dt>
<dd>11 pages, 10 figures, 2 tables</dd>
<dt>Preprint</dt>
<dd><a href="https://arxiv.org/abs/2209.03196">arXiv:2209.03196</a></dd>
</dl>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article3" aria-expanded="false"
aria-controls="collapse_article3">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2022年 9月 7日</div>  
<a href="#article3">
<strong>Paper "Neural Network Approach to Scaling Analysis of Critical Phenomena" is submitted to arXiv.</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article3">
<div class="card-body">
<p class="card-text">
<dl class="dl-horizontal">
<dt>Title</dt>
<dd>Neural Network Approach to Scaling Analysis of Critical Phenomena</dd>
<dt>Author</dt>
<dd>Ryosuke Yoneda and Kenji Harada</dd>
<dt>Abstract</dt>
<dd>
Determining the universality class of a system exhibiting critical phenomena is one of the central problems in physics. As methods for determining this universality class from data, polynomial regression, which is less accurate, and Gaussian process regression, which provides high accuracy and flexibility but is computationally heavy, have been proposed. In this paper, we propose a method by a regression method using a neural network. The computational complexity is only linear in the number of data points. We demonstrate the proposed method for the finite-size scaling analysis of critical phenomena on the two-dimensional Ising model and bond percolation problem to confirm the performance. This method efficiently obtains the critical values with accuracy in both cases.
</dd>
<dt>Comments</dt>
<dd>10 pages, 9 figures</dd>
<dt>Preprint</dt>
<dd><a href="https://arxiv.org/abs/2209.01777">arXiv:2209.01777</a></dd>
</dl>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article4" aria-expanded="false"
aria-controls="collapse_article4">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2022年 8月 26日</div>  
<a href="#article4">
<strong>Talk in The 15th Asia Pacific Physics Conference (APPC15), Korea (online)</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article4">
<div class="card-body">
<p class="card-text">
<p>
</p>
<dl class="dl-horizontal">
<dt>Date</dt>
<dd>Aug 26, 2022</dd>
<dt>Conference (invited talk)</dt>
<dd><a href="https://www.appc15.org">The 15th Asia Pacific Physics Conference (APPC15), Korea (online)</a></dd>
<dt>Title</dt>
<dd>Tensor renormalization group study of the non-equilibrium critical fixed point of the one-dimensional contact process</dd>
<dt>Abstract</dt>
<dd>
The steady-state of many stochastic systems is non-equilibrium. We studied the phase of non-equilibrium systems and the transition similar to equilibrium systems. In particular, the critical phase transition is interesting because we can define the non-equilibrium universality class.
To confirm the existence of a non-equilibrium critical fixed point, we study the time evolution operator of one-dimensional contact processes by using a tensor renormalization group technique. The time evolution operators converge to universal critical tensors in the tensor renormalization group flow. The spectrums of critical tensors are strongly anisotropic but share the intrinsic structure each for the universality class. The integer structure for the universality class of compact-directed percolation in the time direction is consistent with the exact spectrum structure of the diffusion-annihilation process.
</dd>
</dl>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article5" aria-expanded="false"
aria-controls="collapse_article5">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2022年 3月 15日</div>  
<a href="#article5">
<strong>日本物理学会 2022年年次大会にて研究発表(オンライン開催)。</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article5">
<div class="card-body">
<p class="card-text">
<p>
<a href="http://www.jps.or.jp/activities/meetings/index.php">日本物理学会 2022年年次大会</a>
</p>
<p>
日程: 2020年3月15日から3月19日(オンライン開催)
</p>
<ul>
<li>講演(16aE11-4) "テンソルネットワーク近似を用いたランダム量子回路サンプリングの古典シミュレーション" (共同研究者:真鍋秀隆)</li>
<li>講演(15aB12-9) "ニューラルネットワークを用いたスケーリング解析手法" (共同研究者:米田亮介,発表は原田)</li>
</ul>
<p><small>
新型コロナウイルス感染症への対応として、年次大会はオンライン開催になりました。
</small>
</p>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article6" aria-expanded="false"
aria-controls="collapse_article6">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2022年 1月 20日</div>  
<a href="#article6">
<strong>数理科学2022年2月号に解説記事「テンソルネットワーク入門」を寄稿。</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article6">
<div class="card-body">
<p class="card-text">
<p><a href="https://www.saiensu.co.jp/search/?isbn=4910054690224&y=2022">数理科学</a>2022年2月号No.704:テンソルネットワークの進展(多彩な表現形式が物理をつなぐ)に解説記事「テンソルネットワーク入門」を寄稿。</p>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article7" aria-expanded="false"
aria-controls="collapse_article7">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2022年 1月 17日</div>  
<a href="#article7">
<strong>Tensor Network States: Algorithms and Applications (TNSAA) 2021-2022 Online Workshop</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article7">
<div class="card-body">
<p class="card-text">
<p>
We will hold the oneline workshop, Tensor Network States: Algorithms and Applications (TNSAA) 2021-2022, from Jan. 17 to Jan. 21, 2022. The series of workshop, TNSAA, has been organized for the purposes of exchanging new developments, having discussions toward future studies, and providing intruductory talks for new generation of researchers about tensor networks.
</p>
<ul>
<a href="http://bussei.gs.niigata-u.ac.jp/~okunishi/tnsaa/">
http://bussei.gs.niigata-u.ac.jp/~okunishi/tnsaa/
</a>
</ul>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article8" aria-expanded="false"
aria-controls="collapse_article8">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2021年 12月 7日</div>  
<a href="#article8">
<strong>東大第1回量子ソフトウェアワークショップ「テンソルネットワークと量子計算の展望」にて講演。</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article8">
<div class="card-body">
<p class="card-text">
<p>
東京大学理学系研究科量子ソフトウェア寄付講座主催の第1回量子ソフトウェアワークショップ「テンソルネットワークと量子計算の展望」にて、「機械学習におけるテンソルネットワークの活用」について講演を行う。
</p>
<p>
<a href="http://qsw.phys.s.u-tokyo.ac.jp/workshop202112">ワークショップページ</a>
</p>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article9" aria-expanded="false"
aria-controls="collapse_article9">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2021年 9月 20日</div>  
<a href="#article9">
<strong>日本物理学会 2021年秋季大会にて研究発表(オンライン開催)。</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article9">
<div class="card-body">
<p class="card-text">
<p>
<a href="http://www.jps.or.jp/activities/meetings/index.php">日本物理学会 2021年秋季大会</a>
</p>
<p>
日程: 2020年9月20日から9月23日(オンライン開催)
</p>
<ul>
<li>講演(21aL3-3) "吸収状態相転移の非平衡臨界点における普遍的スペクトラム構造のテンソル繰り込み群による研究" </li>
<li>講演(22pL4-9) "行列積表現を用いたニューラルネットワークのエンタングルメント解析" (共同研究者) 阿蘇品 侑雅(発表)</li>
<li>講演(23pA1-1) "テンソルネットワークを用いた量子回路学習" (共同研究者) 真鍋 秀隆(発表)</li>
</ul>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article10" aria-expanded="false"
aria-controls="collapse_article10">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2021年 9月 10日</div>  
<a href="#article10">
<strong>学術変革領域(A)研究課題「極限宇宙の物理法則を創る-量子情報で拓く時空と物質の新しいパラダイム」に参加。</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article10">
<div class="card-body">
<p class="card-text">
<p>
学術変革領域(A)研究課題「極限宇宙の物理法則を創る-量子情報で拓く時空と物質の新しいパラダイム」が採択され、
D02班の研究分担者として参加することになりました。
</p>
<p>
<a href="https://www2.yukawa.kyoto-u.ac.jp/~extremeuniverse/">領域ウェブページ</a>
</p>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article11" aria-expanded="false"
aria-controls="collapse_article11">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2021年 5月 31日</div>  
<a href="#article11">
<strong>Talk in StatPhys seminar at University of Tokyo, Hongo</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article11">
<div class="card-body">
<p class="card-text">
<p>
</p>
<dl class="dl-horizontal">
<dt>Date</dt>
<dd>May 31, 2021</dd>
<dt>Seminar</dt>
<dd><a href="https://sites.google.com/view/statphys-seminar">StatPhys seminar at University of Tokyo, Hongo, Japan</a></dd>
<dt>Title</dt>
<dd>Universal spectrum structure on the nonequilibrium critical line of the one-dimensional Domany-Kinzel cellular automaton</dd>
<dt>Abstract</dt>
<dd>
The Domany-Kinzel(DK) cellular automaton is a stochastic time-evolutional system with an absorbing state from which the system cannot escape and a canonical model for nonequilibrium critical phenomena[1]. We introduce the tensor network method as a new tool to study it. Estimating the entropy of the DK automaton with a matrix product state representation of distribution, we reported a new cusp of the Renyi entropy in the active phase of the DK cellular automaton[2]. We recently applied a tensor renormalization group method to transfer matrices at the nonequilibrium critical point of the DK cellular automaton, confirming a universal spectrum structure[3]. In this talk, we will report our results with a brief review of models and methods.<br><br>
[1] M. Henkel, H. Hinrichsen, and S. Lübeck, Non-Equilibrium Phase Transitions. Volume 1: Absorbing Phase Transitions, Vol. 1 (Springer, 2008).<br>
[2] K. H. and N. Kawashima, Entropy Governed by the Absorbing State of Directed Percolation, Physical Review Letters 123, 090601 (2019).<br>
[3] K. H., Universal spectrum structure at nonequilibrium critical points in the (1+1)-dimensional directed percolation, arXiv:2008.10807.<br>
</dd>
</dl>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article12" aria-expanded="false"
aria-controls="collapse_article12">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2021年 3月 14日</div>  
<a href="#article12">
<strong>日本物理学会 2021年年次大会にて研究発表(オンライン開催)。</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article12">
<div class="card-body">
<p class="card-text">
<p>
<a href="http://www.jps.or.jp/activities/meetings/index.php">日本物理学会 2021年年次大会</a>
</p>
<p>
日程: 2020年3月12日から3月15日(オンライン開催)
</p>
<ul>
<li>講演(14pL2-3) "テンソルネットワーク状態の幾何学的変換" </li>
</ul>
<p><small>
新型コロナウイルス感染症への対応として、年次大会はオンライン開催になりました。
</small>
</p>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article13" aria-expanded="false"
aria-controls="collapse_article13">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2020年 12月 14日</div>  
<a href="#article13">
<strong>Paper "Critical exponents in coupled phase-oscillator models on small-world networks" is published in Physical Review E.</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article13">
<div class="card-body">
<p class="card-text">
<dl class="dl-horizontal">
<dt>Title</dt>
<dd>Critical exponents in coupled phase-oscillator models on small-world networks</dd>
<dt>Reference</dt>
<dd>Physical Review E <strong>102</strong>, 062212 (2020)</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1103/PhysRevE.102.062212">10.1103/PhysRevE.102.062212</a></dd>
<dt>Author</dt>
<dd>Ryosuke Yoneda, Kenji Harada, and Yoshiyuki Y. Yamaguchi</dd>
<dt>Abstract</dt>
<dd>
A coupled phase-oscillator model consists of phase oscillators, each of which has the natural frequency obeying a probability distribution and couples with other oscillators through a given periodic coupling function. This type of model is widely studied since it describes the synchronization transition, which emerges between the nonsynchronized state and partially synchronized states. The synchronization transition is characterized by several critical exponents, and we focus on the critical exponent defined by coupling strength dependence of the order parameter for revealing universality classes. In a typical interaction represented by the perfect graph, an infinite number of universality classes is yielded by dependency on the natural frequency distribution and the coupling function. Since the synchronization transition is also observed in a model on a small-world network, whose number of links is proportional to the number of oscillators, a natural question is whether the infinite number of universality classes remains in small-world networks irrespective of the order of links. Our numerical results suggest that the number of universality classes is reduced to one and the critical exponent is shared in the considered models having coupling functions up to second harmonics with unimodal and symmetric natural frequency distributions.
</dd>
<dt>Comments</dt>
<dd>8 pages, 8 figures</dd>
<dt>Preprint</dt>
<dd><a href="https://arxiv.org/abs/2007.04539">arXiv:2007.04539</a></dd>
</dl>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article14" aria-expanded="false"
aria-controls="collapse_article14">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2020年 9月 8日</div>  
<a href="#article14">
<strong>日本物理学会 2020年秋季大会にて研究発表(オンライン開催)。</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article14">
<div class="card-body">
<p class="card-text">
<p>
<a href="http://www.jps.or.jp/activities/meetings/index.php">日本物理学会 2020年秋季大会</a>
</p>
<p>
日程: 2020年9月8日から9月11日(オンライン開催)
</p>
<ul>
<li>講演(9pL1-9) "スモールワールドネットワーク上の結合位相振動子系における同期転移の臨界指数"
(共同研究者)米田亮介(発表者), 山口義幸</li>
<li>講演(10pL2-7) "同時有向浸透現象の相転移"(共同研究者)星野佑樹(発表者)</li>
<li>講演(10pL2-8) "臨界有向浸透現象のスペクトラムを用いた新しい普遍性の提案" </li>
</ul>
<p><small>
新型コロナウイルス感染症への対応として、秋季大会はオンライン開催になりました。
</small>
</p>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<div class="row no-gutters">
<div class="col-md-10">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article15" aria-expanded="false"
aria-controls="collapse_article15">
<div class="card-header text-start">
<p class="card-title">
<h6 class="badge bg-primary">2020年 8月 25日</h6>  
<a href="#article15">
<strong>Paper "Universal spectrum structure at nonequilibrium critical points in the (1+1)-dimensional directed percolation" is submitted.</strong>
</a>
</p>
</div>
</button>
<div id="collapse_article15" class="collapse">
<div class="card-body">
<p class="card-text">
<dl class="dl-horizontal">
<dt>Preprint</dt>
<dd><a href="http://arxiv.org/abs/2008.10807">arXiv:2008.10807</a></dd>
<dt>Author</dt>
<dd>Kenji Harada</dd>
<dt>Abstract</dt>
<dd>
Using a tensor renormalization group method with oblique projectors for an anisotropic tensor network, we confirm that the rescaled spectrum of transfer matrices at nonequilibrium critical points in the (1+1)-dimensional directed percolation, a canonical model of nonequilibrium critical phenomena, is scale-invariant and its structure is universal.
</dd>
<dt>Comments</dt>
<dd>6 pages, 7 figures</dd>
</dl>
</p>
</div>
</div>
</div>
<div class="col-md-2">
<img src="https://www-np.acs.i.kyoto-u.ac.jp/~harada/posts/images/2020-08-25-Paper-Universal-spectrum-DP.jpg" alt="2020-08-25-Paper-Universal-spectrum-DP.jpg"
class="card-img">
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article16" aria-expanded="false"
aria-controls="collapse_article16">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2020年 7月 9日</div>  
<a href="#article16">
<strong>Paper "Critical exponents in coupled phase-oscillator models on small-world networks" is submitted.</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article16">
<div class="card-body">
<p class="card-text">
<dl class="dl-horizontal">
<dt>Preprint</dt>
<dd><a href="https://arxiv.org/abs/2007.04539">arXiv:2007.04539</a></dd>
<dt>Title</dt>
<dd>Critical exponents in coupled phase-oscillator models on small-world networks</dd>
<dt>Author</dt>
<dd>Ryosuke Yoneda, Kenji Harada, Yoshiyuki Y. Yamaguchi</dd>
<dt>Abstract</dt>
<dd>
A coupled phase-oscillator model consists of phase-oscillators, each of which has the natural frequency obeying a probability distribution and couples with other oscillators through a given periodic coupling function. This type of models is widely studied since it describes the synchronization transition, which emerges between the non-synchronized state and partially synchronized states, and which is characterized by the critical exponents. Among them, we focus on the critical exponent defined by coupling strength dependence of the order parameter. The synchronization transition is not limited in the all-to-all interaction, whose number of links is of O(N2) with N oscillators, and occurs in small-world networks whose links are of O(N). In the all-to-all interaction, values of the critical exponent depend on the natural frequency distribution and the coupling function, classified into an infinite number of universality classes. A natural question is in small-world networks, whether the dependency remains irrespective of the order of links. To answer this question we numerically compute the critical exponent on small-world networks by using the finite-size scaling method with coupling functions up to the second harmonics and with unimodal and symmetric natural frequency distributions. Our numerical results suggest that, for the continuous transition, the considered models share the critical exponent 1/2, and that they are collapsed into one universality class.
</dd>
<dt>Comments</dt>
<dd>7 pages, 7 figures</dd>
</dl>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article17" aria-expanded="false"
aria-controls="collapse_article17">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2020年 6月 4日</div>  
<a href="#article17">
<strong>Paper "Finite-m scaling analysis of Berezinskii-Kosterlitz-Thouless phase transitions and entanglement spectrum for the six-state clock model" is published in Physical Review E.</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article17">
<div class="card-body">
<p class="card-text">
<dl class="dl-horizontal">
<dt>Title</dt>
<dd>Finite-m scaling analysis of Berezinskii-Kosterlitz-Thouless phase transitions and entanglement spectrum for the six-state clock model</dd>
<dt>Reference</dt>
<dd>Physical Review E <strong>101</strong>, 062111 (2020)</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1103/PhysRevE.101.062111">10.1103/PhysRevE.101.062111</a></dd>
<dt>Author</dt>
<dd>Hiroshi Ueda, Kouichi Okunishi, Kenji Harada, Roman Krčmár, Andrej Gendiar, Seiji Yunoki, and Tomotoshi Nishino</dd>
<dt>Abstract</dt>
<dd>
We investigate the Berezinskii-Kosterlitz-Thouless transitions for the square-lattice six-state clock model with the corner-transfer matrix renormalization group (CTMRG). Scaling analyzes for effective correlation length, magnetization, and entanglement entropy with respect to the cutoff dimension m at the fixed point of CTMRG provide transition temperatures consistent with a variety of recent numerical studies. We also reveal that the fixed point spectrum of the corner transfer matrix in the critical intermediate phase of the six-state clock model is characterized by the scaling dimension consistent with the c=1 boundary conformal field theory associated with the effective Z_6 dual sine-Gordon model.
</dd>
<dt>Comments</dt>
<dd>7 pages, 7 figures</dd>
<dt>Preprint</dt>
<dd><a href="https://arxiv.org/abs/2001.10176">arXiv:2001.10176</a></dd>
</dl>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article18" aria-expanded="false"
aria-controls="collapse_article18">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2020年 3月 18日</div>  
<a href="#article18">
<strong>日本物理学会 第75回年次大会にて研究発表(現地開催中止)。</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article18">
<div class="card-body">
<p class="card-text">
<p>
<a href="http://www.jps.or.jp/activities/meetings/index.php">日本物理学会 第75回年次大会</a>
</p>
<p>
日程: 2020年3月16日から3月19日、会場:名古屋大学(東山キャンパス)
</p>
<ul>
<li>講演(18pK43-4) "テンソルネットワーク中のエンタングルメント最適化"</li>
<li>講演(19aPS-90) "Double DKセルオートマトンにおける相転移現象"(共同研究者)星野佑樹(発表者)</li>
</ul>
<p><small>
新型コロナウイルス感染症への対応として、年次大会の現地開催は中止となりましたが、
講演概要原稿の提出等の条件を満たしているため、発表が成立したものとされています。
</small>
</p>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<div class="row no-gutters">
<div class="col-md-10">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article19" aria-expanded="false"
aria-controls="collapse_article19">
<div class="card-header text-start">
<p class="card-title">
<h6 class="badge bg-primary">2020年 3月 10日</h6>  
<a href="#article19">
<strong>トヨタ自動車株式会社との共同研究プロジェクト「モビリティ基盤数理」に参加。</strong>
</a>
</p>
</div>
</button>
<div id="collapse_article19" class="collapse">
<div class="card-body">
<p class="card-text">
<p>
トヨタ自動車株式会社と京都大学との産学連携の新しい取組みである「モビリティ基盤数理」研究ユニットに参加し、
テンソルデータ解析に統計物理学的視点を導入するための共同研究をスタート。
</p>
<p>
<a href="http://www.kyoto-u.ac.jp/ja/research/events_news/department/gakusai/news/2019/200201_1.html">京都大学広報ページ</a>
</p>
</p>
</div>
</div>
</div>
<div class="col-md-2">
<img src="https://www-np.acs.i.kyoto-u.ac.jp/~harada/posts/images/2020-03-10-Project-mobility-TOYOTA.jpg" alt="2020-03-10-Project-mobility-TOYOTA.jpg"
class="card-img">
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article20" aria-expanded="false"
aria-controls="collapse_article20">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2020年 1月 28日</div>  
<a href="#article20">
<strong>Paper "Finite-m scaling analysis of Berezinskii-Kosterlitz-Thouless phase transitions and entanglement spectrum for the six-state clock model" is submitted.</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article20">
<div class="card-body">
<p class="card-text">
<dl class="dl-horizontal">
<dt>Preprint</dt>
<dd><a href="https://arxiv.org/abs/2001.10176">arXiv:2001.10176</a></dd>
<dt>Author</dt>
<dd>Hiroshi Ueda, Kouichi Okunishi, Kenji Harada, Roman Krčmár, Andrej Gendiar, Seiji Yunoki, and Tomotoshi Nishino</dd>
<dt>Abstract</dt>
<dd>
We investigate the Berezinskii-Kosterlitz-Thouless transitions for the square-lattice six-state clock model with the corner-transfer matrix renormalization group (CTMRG). Scaling analyzes for effective correlation length, magnetization, and entanglement entropy with respect to the cutoff dimension m at the fixed point of CTMRG provide transition temperatures consistent with a variety of recent numerical studies. We also reveal that the fixed point spectrum of the corner transfer matrix in the critical intermediate phase of the six-state clock model is characterized by the scaling dimension consistent with the c=1 boundary conformal field theory associated with the effective Z_6 dual sine-Gordon model.
</dd>
<dt>Comments</dt>
<dd>7 pages, 7 figures</dd>
</dl>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article21" aria-expanded="false"
aria-controls="collapse_article21">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2019年 12月 15日</div>  
<a href="#article21">
<strong>日本シミュレーション学会誌「シミュレーション」:シミュレーションの世界に、確率的セルオートマトンのテンソルネットワークを用いた時間発展シミュレーション法の解説記事を執筆。</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article21">
<div class="card-body">
<p class="card-text">
<p>
日本シミュレーション学会誌「シミュレーション」にある連載シリーズ「シミュレーションの世界」に、
テンソルネットワークを用いて、セルオートマトンの時間発展シミュレーションをどのように行うかについて、解説記事を執筆しました。
</p>
<dl>
<dt>記事情報</dt>
<dd>
「テンソルネットワークによるセルオートマトンの状態確率分布の時間発展シミュレーション」,
<a href="https://www.jsst.jp/j/journal/">日本シミュレーション学会誌「シミュレーション」</a>2019年12月 Vol.38 No.4 page 228-231.
</dd>
</dl>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article22" aria-expanded="false"
aria-controls="collapse_article22">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2019年 12月 4日</div>  
<a href="#article22">
<strong>Talk in Tensor Network States: Algorithms and Applications (TNSAA) 2019-2020 (NCCU, Taipei, TAIWAN)</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article22">
<div class="card-body">
<p class="card-text">
<ul>
<li>Conference: Tensor Network States: Algorithms and Applications (TNSAA) 2019-2020</li>
<li>Invited talk: "New numerical approaches for directed percolation"</li>
<li>Date: Dec. 4, 2019
<li>Conference dates: Dec. 4-6, 2019</li>
<li>Venue: NCCU, Taipei, TAIWAN</li>
<li>URL:<a href="https://tnsaa7.github.io">https://tnsaa7.github.io</a>
</ul>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article23" aria-expanded="false"
aria-controls="collapse_article23">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2019年 10月 28日</div>  
<a href="#article23">
<strong>集中講義:非線形物理学特論II(10月28日午後2時45分〜午後6時、10月29日午後2時45分〜午後6時、11月5日午後2時45分〜午後6時、11月6日午後1時〜午後2時30分)</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article23">
<div class="card-body">
<p class="card-text">
<p>集中講義:非線形物理学特論II(2019年後期)を下記の要領で開講いたします。</p>
<ul>
<li>開講日時
<ul>
<li>10月28日(月)4,5限(午後2時45分開始、午後6時終了)</li>
<li>10月29日(火)4,5限(午後2時45分開始、午後6時終了)</li>
<li>11月5日(火)4,5限(午後2時45分開始、午後6時終了)</li>
<li>11月6日(水)3限(午後1時開始、午後2時30分終了)</li>
</ul>
<li>開講場所:京都大学 吉田キャンパス 総合研究8号館 講義室3(3階南)<a href="http://www.kyoto-u.ac.jp/ja/access/campus/yoshida/map6r_y/" class="badge badge-primary">Map (No.59)</a>。11月6日は講義室4(3階北)。</li>
<li>講義の概要・目的
<p>相互作用する多数の要素からなる系(多体系)は多くの分野で見られるが、単純な相互作用であっても数学的に厳密な取り扱いは困難であることが多い。そのため、近年、コンピュータの進化と共に多体系向けの数値的手法は欠かせない基礎技術となってきている。この講義の目的は現在活発に開発が行なわれている多体系向けの数値的手法の総括を行うことで、それらに関する進んだ知識を取得することにある。</p>
</li>
<li>到達目標:多体系向けの数値的手法に関する基本的事項を理解した上で、各分野の問題に取り組める応用力の習得を目指す。</li>
<li>講義計画と内容:以下の内容を講述する。講義の進度に応じて省略する項目もある。
<ol>
<li>多体系の例:時間発展系、平衡系、量子系、最適化問題、ベイズ推定</li>
<li>モンテカルロ法の基礎</li>
<li>モンテカルロ法のアルゴリズム:動的モンテカルロ法、ギブスサンプラー、メトロポリス法、量子モンテカルロ法、ハミルトニアンモンテカルロ法</li>
<li>テンソル分解とテンソルネットワークの基礎</li>
<li>テンソルネットワーク法のアルゴリズム</li>
<li>まとめと展望</li>
</ol>
</li>
</ul>
<p>なお、講義は京都大学情報学研究科の大学院生対象ですが、興味ある方はどなたでも参加して頂いて結構です。</p>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article24" aria-expanded="false"
aria-controls="collapse_article24">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2019年 10月 25日</div>  
<a href="#article24">
<strong>一般書籍「数理工学の世界」(日本評論社)第3章"沢山からできている世界"を執筆。</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article24">
<div class="card-body">
<p class="card-text">
<p>一般書籍<a href="https://www.nippyo.co.jp/shop/book/8153.html">「数理工学の世界」</a>(日本評論社)第3章"沢山からできている世界"を執筆。
全7章構成(第1章は座談会録)で、数理工学の広がりを高校生〜大学初年度程度の知識で理解できるように書かれています。
第3章は統計物理学的アプローチについて紹介していますが、他の章も興味深い内容ですので、どうぞ、御一読下さい。</p>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article25" aria-expanded="false"
aria-controls="collapse_article25">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2019年 9月 10日</div>  
<a href="#article25">
<strong>日本物理学会 2019年秋季大会にて講演。</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article25">
<div class="card-body">
<p class="card-text">
<p><a href="https://www.jps.or.jp/activities/meetings/index.php">日本物理学会 2019年秋季大会</a></p>
<p>
日程: 2019年9月10日から9月13日、会場:岐阜大学(柳戸キャンパス)
</p>
<ul>
<li>講演(<a href="https://w4.gakkai-web.net/jps_search/2019au/data/html/program11.html#j11aK25">11aK25-9</a>) "斜交射影を用いたテンソル繰り込み群によるセルオートマトンシミュレーション"(共同研究者)鉈落佳奈(発表者)</li>
<li>講演(<a href="https://w4.gakkai-web.net/jps_search/2019au/data/html/program11.html#j11aK25">11aK25-10</a>) "強く非等方的な臨界点における不変性"</li>
<li>講演(<a href="https://w4.gakkai-web.net/jps_search/2019au/data/html/program11.html#j13aPS">13aPS-6</a>) "セルオートマトンにおける全エントロピーのモンテカルロ計算"(共同研究者)星野佑樹(発表者), 鉈落佳奈</li>
</ul>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article26" aria-expanded="false"
aria-controls="collapse_article26">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2019年 9月 6日</div>  
<a href="#article26">
<strong>国際滞在型ワークショップ Computational Approaches to Quantum Many-body Problems(CAQMP 2019)でのレクチャーやセミナーらがYouTubeで公開。</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article26">
<div class="card-body">
<p class="card-text">
<p>
量子多体問題をキーワードに関連する多岐に渡る分野における最近の計算手法に関する滞在型国際ワークショップCAQMP2019が4週間弱に渡って開催されました。
ワークショップで開催されたレクチャーやセミナーがYouTubeで公開されています。
<ul>
<li>YouTube URL:<a href="https://www.youtube.com/watch?v=PDYyt9B6wNw&list=PLyL_XwLqTTm6roebw6MgIK0ljrN8cSQUX">
https://www.youtube.com/watch?v=PDYyt9B6wNw&list=PLyL_XwLqTTm6roebw6MgIK0ljrN8cSQUX</a></li>
</ul>
</p>
<ul>
<li>日程:2019年7月16日(火) ~ 2019年8月8日(木)(4週間弱)</li>
<li>開催場所:東京大学物性研究所 (〒277−8581 柏市柏の葉5−1−5)</li>
<li>ワークショップURL:<a href="http://www.issp.u-tokyo.ac.jp/public/caqmp2019/">http://www.issp.u-tokyo.ac.jp/public/caqmp2019/</a></li>
</ul>
</p>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<div class="row no-gutters">
<div class="col-md-10">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article27" aria-expanded="false"
aria-controls="collapse_article27">
<div class="card-header text-start">
<p class="card-title">
<h6 class="badge bg-primary">2019年 8月 27日</h6>  
<a href="#article27">
<strong>Paper "Entropy Governed by the Absorbing State of Directed Percolation" is published in Physical Review Letters.</strong>
</a>
</p>
</div>
</button>
<div id="collapse_article27" class="collapse">
<div class="card-body">
<p class="card-text">
<dl class="dl-horizontal">
<dt>TITLE</dt>
<dd>Entropy Governed by the Absorbing State of Directed Percolation</dd>
<dt>REFERENCE</dt>
<dd>Physical Review Letters <strong>123</strong>, 090601 (2019)</dd>
<dt>DOI</dt>
<dd><a href="https://doi.org/10.1103/PhysRevLett.123.090601">10.1103/PhysRevLett.123.090601</a></dd>
<dt>AUTHOR</dt>
<dd>Kenji Harada and Naoki Kawashima</dd>
<dt>ABSTRACT</dt>
<dd>
We investigate the informational aspect of (1+1)-dimensional directed percolation, a canonical model of a nonequilibrium continuous transition to a phase dominated by a single special state called the “absorbing” state. Using a tensor network scheme, we numerically calculate the time evolution of state probability distribution of directed percolation. We find a universal relaxation of Rényi entropy at the absorbing phase transition point as well as a new singularity in the active phase, slightly but distinctly away from the absorbing transition point. At the new singular point, the second-order Rényi entropy has a clear cusp. There we also detect a singular behavior of “entanglement entropy,” defined by regarding the probability distribution as a wave function. The entanglement entropy vanishes below the singular point and stays finite above. We confirm that the absorbing state, though its occurrence is exponentially rare in the active phase, is responsible for these phenomena. This interpretation provides us with a unified understanding of time evolution of the Rényi entropy at the critical point as well as in the active phase.
</dd>
</dl>
</p>
</div>
</div>
</div>
<div class="col-md-2">
<img src="https://www-np.acs.i.kyoto-u.ac.jp/~harada/posts/images/2019-08-27-Paper-Renyi-DP.jpg" alt="2019-08-27-Paper-Renyi-DP.jpg"
class="card-img">
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<button class="btn btn-light" type="button" data-bs-toggle="collapse"
data-bs-target="#collapse_article28" aria-expanded="false"
aria-controls="collapse_article28">
<div class="card-header text-start">
<h6 class="card-title">
<div class="badge bg-primary">2019年 7月 16日</div>  
<a href="#article28">
<strong>国際滞在型ワークショップ Computational Approaches to Quantum Many-body Problems(CAQMP 2019)に参加。</strong>
</a>
</h6>
</div>
</button>
<div class="collapse" id="collapse_article28">
<div class="card-body">
<p class="card-text">
<p>
量子多体問題をキーワードに関連する多岐に渡る分野における最近の計算手法に関する滞在型国際ワークショップを4週間弱に渡って開催する。毎週月曜日に、最新の研究成果報告や関連する周辺分野の話題を中心とした多数の講演からなるシンポジウムを開催する。その他曜日は、方法論の基礎やキーとなるアイデアについて数件の講義・講演のみとし、滞在参加者間で議論を行う。