-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
242 lines (230 loc) · 27 KB
/
Copy pathindex.html
File metadata and controls
242 lines (230 loc) · 27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="generator" content="Hugo 0.162.1">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noodp" ><title>Jia Jia Math</title><meta name="Description" content="Welcome to Jia Jia's Research Site"><meta property="og:url" content="https://mathjiajia.github.io/">
<meta property="og:site_name" content="Jia Jia Math">
<meta property="og:title" content="首页">
<meta property="og:description" content="My name is Jia Jia (贾甲 in Chinese).
I am an Assistant Professor at Shanghai Institute for Mathematics and Interdisciplinary Sciences (SIMIS) and a member of the Birational Geometry Group.
Previously, I was a postdoctoral researcher at Yau Mathematical Sciences Center (YMSC), Tsinghua University (THU) (mentor: Caucher Birkar).
I received my PhD from National University of Singapore (NUS) under the supervision of Professor De-Qi Zhang in April 2023.
Before that, I obtained my BSc from Zhejiang University (ZJU) in June 2018.">
<meta property="og:locale" content="en">
<meta property="og:type" content="website">
<meta property="og:image" content="https://mathjiajia.github.io/images/avatar.webp">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://mathjiajia.github.io/images/avatar.webp">
<meta name="twitter:title" content="首页">
<meta name="twitter:description" content="My name is Jia Jia (贾甲 in Chinese).
I am an Assistant Professor at Shanghai Institute for Mathematics and Interdisciplinary Sciences (SIMIS) and a member of the Birational Geometry Group.
Previously, I was a postdoctoral researcher at Yau Mathematical Sciences Center (YMSC), Tsinghua University (THU) (mentor: Caucher Birkar).
I received my PhD from National University of Singapore (NUS) under the supervision of Professor De-Qi Zhang in April 2023.
Before that, I obtained my BSc from Zhejiang University (ZJU) in June 2018.">
<meta name="application-name" content="Math Jia Jia">
<meta name="apple-mobile-web-app-title" content="Math Jia Jia">
<meta name="theme-color" content="#f8f8f8"><meta name="msapplication-TileColor" content="#da532c"><link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" >
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<link rel="canonical" href="https://mathjiajia.github.io/" ><link rel="alternate" href="/index.xml" type="application/rss+xml" title="Jia Jia Math">
<link rel="feed" href="/index.xml" type="application/rss+xml" title="Jia Jia Math">
<link rel="stylesheet" href="/css/main.min.css"><link rel="stylesheet" href="/css/style.min.css"><meta name="google-site-verification" content="6AUNriD4Eq-HMgEX-wsNHZzcJUeU-CHy20ar6Lrye2Q" ><script type="application/ld+json">
{"@context": "https://schema.org",
"@graph": [{
"@type": "WebSite",
"url": "https://mathjiajia.github.io/","inLanguage": "en","author": {
"@type": "Person",
"name": "Jia Jia"
},"description": "Welcome to Jia Jia's Research Site","image": "https://mathjiajia.github.io/images/Apple-Devices-Preview.png","thumbnailUrl": "https://mathjiajia.github.io/images/screenshot.png","license": "This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License.","copyrightYear": 2021 ,"copyrightHolder": {
"@type": "Person",
"name": "true"
},"name": "Jia Jia Math"
}]}
</script></head>
<body data-instant-intensity="viewport" class="tw:flex tw:min-h-screen tw:flex-col"><script>
function setTheme(theme) {
document.body.setAttribute('theme', theme);
document.documentElement.className = theme;
document.documentElement.style.setProperty('color-scheme', theme === 'light' ? 'light' : 'dark');
if (theme === 'light') {
document.documentElement.classList.remove('dark')
} else {
document.documentElement.classList.add('dark')
}
window.theme = theme;
window.isDark = window.theme !== 'light'
}
function saveTheme(theme) {window.localStorage && localStorage.setItem('theme', theme);}
function getMeta(metaName) {const metas = document.getElementsByTagName('meta'); for (let i = 0; i < metas.length; i++) if (metas[i].getAttribute('name') === metaName) return metas[i]; return '';}
if (window.localStorage && localStorage.getItem('theme')) {
let theme = localStorage.getItem('theme');
if (theme === 'light' || theme === 'dark') {
setTheme(theme);
} else {
if ((window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
setTheme('dark');
} else {
setTheme('light');
}
}
} else {
if ('auto' === 'light' || 'auto' === 'dark')
setTheme('auto'), saveTheme('auto');
else saveTheme('auto'), window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches ? setTheme('dark') : setTheme('light');
}
let metaColors = {'light': '#f8f8f8','dark': '#161b22'}
getMeta('theme-color').content = metaColors[document.body.getAttribute('theme')];
window.switchThemeEventSet = new Set()
</script><div id="back-to-top"></div>
<div id="mask"></div><header class="desktop tw:print:hidden!" id="header-desktop">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="Jia Jia Math"><span class="tw:mr-1"><i class='fas fa-seedling'></i></span>Jia Jia's Homepage</a>
</div>
<div class="menu">
<div class="menu-inner"><a class="menu-item active"
href="/" > Home </a><a class="menu-item"
href="/publications/" > Publications </a><a class="menu-item"
href="/conferences/" > Conferences </a><a class="menu-item"
href="/teaching/" > Teaching </a><a class="menu-item"
href="/utilities/" > Utilities </a><a class="menu-item"
href="/posts/" > Posts </a><span class="menu-item delimiter"></span><span class="menu-item search" id="search-desktop">
<input type="text"
placeholder="Search titles or contents..."
id="search-input-desktop">
<button class="search-button search-toggle" id="search-toggle-desktop" title="Search">
<svg class="icon"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!-- Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"/></svg>
</button>
<button class="search-button search-clear" id="search-clear-desktop" title="Clear">
<svg class="icon"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!-- Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z"/></svg>
</button>
<span class="search-button search-loading tw:animate-spin" id="search-loading-desktop">
<svg class="icon"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!-- Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z"/></svg>
</span>
</span><button class="menu-item theme-switch" aria-label="Switch Theme">
<svg class="icon"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!-- Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z"/></svg>
</button></div>
</div>
</div>
</header><header class="mobile tw:print:hidden!" id="header-mobile">
<div class="header-container">
<div class="header-wrapper">
<div class="header-title">
<a href="/" title="Jia Jia Math"><span class="tw:mr-1"><i class='fas fa-seedling'></i></span>Jia Jia's Homepage</a>
</div>
<div class="menu-toggle" id="menu-toggle-mobile">
<span></span><span></span><span></span>
</div>
</div>
<div class="menu" id="menu-mobile"><div class="search-wrapper">
<div class="search mobile" id="search-mobile">
<input type="text"
placeholder="Search titles or contents..."
id="search-input-mobile">
<button class="search-button search-toggle tw:h-10" id="search-toggle-mobile" title="Search">
<svg class="icon"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!-- Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"/></svg>
</button>
<button class="search-button search-clear tw:h-fit" id="search-clear-mobile" title="Clear">
<svg class="icon"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!-- Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm121.6 313.1c4.7 4.7 4.7 12.3 0 17L338 377.6c-4.7 4.7-12.3 4.7-17 0L256 312l-65.1 65.6c-4.7 4.7-12.3 4.7-17 0L134.4 338c-4.7-4.7-4.7-12.3 0-17l65.6-65-65.6-65.1c-4.7-4.7-4.7-12.3 0-17l39.6-39.6c4.7-4.7 12.3-4.7 17 0l65 65.7 65.1-65.6c4.7-4.7 12.3-4.7 17 0l39.6 39.6c4.7 4.7 4.7 12.3 0 17L312 256l65.6 65.1z"/></svg>
</button>
<span class="search-button search-loading tw:animate-spin" id="search-loading-mobile">
<svg class="icon"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!-- Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M304 48c0 26.51-21.49 48-48 48s-48-21.49-48-48 21.49-48 48-48 48 21.49 48 48zm-48 368c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zm208-208c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.49-48-48-48zM96 256c0-26.51-21.49-48-48-48S0 229.49 0 256s21.49 48 48 48 48-21.49 48-48zm12.922 99.078c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.491-48-48-48zm294.156 0c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48c0-26.509-21.49-48-48-48zM108.922 60.922c-26.51 0-48 21.49-48 48s21.49 48 48 48 48-21.49 48-48-21.491-48-48-48z"/></svg>
</span>
</div>
<button class="search-cancel" id="search-cancel-mobile">
Cancel
</button>
</div><a class="menu-item" href="/" title="" >Home</a><a class="menu-item" href="/publications/" title="" >Publications</a><a class="menu-item" href="/conferences/" title="" >Conferences</a><a class="menu-item" href="/teaching/" title="" >Teaching</a><a class="menu-item" href="/utilities/" title="" >Utilities</a><a class="menu-item" href="/posts/" title="" >Posts</a><button class="menu-item theme-switch tw:w-full" aria-label="Switch Theme">
<svg class="icon"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!-- Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M8 256c0 136.966 111.033 248 248 248s248-111.034 248-248S392.966 8 256 8 8 119.033 8 256zm248 184V72c101.705 0 184 82.311 184 184 0 101.705-82.311 184-184 184z"/></svg>
</button></div>
</div>
</header>
<div class="search-dropdown desktop">
<div id="search-dropdown-desktop"></div>
</div>
<div class="search-dropdown mobile">
<div id="search-dropdown-mobile"></div>
</div><main class="tw:mx-4 tw:flex-1"><div class="page home" data-posts><div class="home-profile"><div class="home-avatar"><a href="/" title="Home" ><img loading="eager" src='/41ec955d473433aa51e23483067e55ca_5834330134864479660.png' srcset="/41ec955d473433aa51e23483067e55ca_5834330134864479660_hu_590e9c7996aeaf78.webp 96w, /41ec955d473433aa51e23483067e55ca_5834330134864479660_hu_d12c850819511d54.webp 144w, /41ec955d473433aa51e23483067e55ca_5834330134864479660_hu_3f46a0e4664d7cc8.webp 192w" sizes="100vw" alt="Home avatar" height="100" width="100"></a></div><h2 class="home-subtitle"><div id="id-1" class="typeit"></div></h2><div class="links"><a href="https://github.com/mathjiajia" title="GitHub" target="_blank" rel="noopener noreferrer me"><svg class="icon" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>GitHub</title><path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/></svg></a><a href="https://linkedin.com/in/jia-jia-9b9175162" title="LinkedIn" target="_blank" rel="noopener noreferrer me"><svg class="icon"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!-- Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z"/></svg></a><a href="https://scholar.google.com/citations?user=Z8amnfgAAAAJ&hl=en" title="Google Scholar" target="_blank" rel="noopener noreferrer me"><svg class="icon" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><title>Google Scholar</title><path d="M5.242 13.769L0 9.5 12 0l12 9.5-5.242 4.269C17.548 11.249 14.978 9.5 12 9.5c-2.977 0-5.548 1.748-6.758 4.269zM12 10a7 7 0 1 0 0 14 7 7 0 0 0 0-14z"/></svg></a><a href="https://www.researchgate.net/profile/Jia-Jia-14" title="ResearchGate" target="_blank" rel="noopener noreferrer me"><svg class="icon"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!-- Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1.6-33.6.8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z"/></svg></a><a href="https://orcid.org/0000-0002-2693-7278" title="ORCID" target="_blank" rel="noopener noreferrer me"><svg class="icon"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!-- Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M294.75 188.19h-45.92V342h47.47c67.62 0 83.12-51.34 83.12-76.91 0-41.64-26.54-76.9-84.67-76.9zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-80.79 360.76h-29.84v-207.5h29.84zm-14.92-231.14a19.57 19.57 0 1 1 19.57-19.57 19.64 19.64 0 0 1-19.57 19.57zM300 369h-81V161.26h80.6c76.73 0 110.44 54.83 110.44 103.85C410 318.39 368.38 369 300 369z"/></svg></a><a href="mailto:mathjiajia@gmail.com" title="Email" rel=" me"><svg class="icon"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!-- Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"/></svg></a><a href="/index.xml" title="RSS" target="_blank" rel="noopener noreferrer me"><svg class="icon"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!-- Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M128.081 415.959c0 35.369-28.672 64.041-64.041 64.041S0 451.328 0 415.959s28.672-64.041 64.041-64.041 64.04 28.673 64.04 64.041zm175.66 47.25c-8.354-154.6-132.185-278.587-286.95-286.95C7.656 175.765 0 183.105 0 192.253v48.069c0 8.415 6.49 15.472 14.887 16.018 111.832 7.284 201.473 96.702 208.772 208.772.547 8.397 7.604 14.887 16.018 14.887h48.069c9.149.001 16.489-7.655 15.995-16.79zm144.249.288C439.596 229.677 251.465 40.445 16.503 32.01 7.473 31.686 0 38.981 0 48.016v48.068c0 8.625 6.835 15.645 15.453 15.999 191.179 7.839 344.627 161.316 352.465 352.465.353 8.618 7.373 15.453 15.999 15.453h48.068c9.034-.001 16.329-7.474 16.005-16.504z"/></svg></a></div><h3 class="home-disclaimer">~~~~~*~~~~~*~~~~~*~~~~~</h3></div><div class="single">
<div class="content" id="content"><h1 id="" class="headerLink">
<a href="#" class="header-mark"></a></h1><p>My name is Jia Jia (贾甲 in Chinese).</p>
<p>I am an Assistant Professor at <a href="https://www.simis.cn/" target="_blank" rel="noopener noreferrer">Shanghai Institute for Mathematics and Interdisciplinary Sciences (SIMIS)</a>
and a member of the <a href="https://ymsc.tsinghua.edu.cn/kxyj/yjtd/syljhyjtd.htm" target="_blank" rel="noopener noreferrer">Birational Geometry Group</a>.</p>
<p>Previously, I was a postdoctoral researcher at <a href="https://ymsc.tsinghua.edu.cn/en/" target="_blank" rel="noopener noreferrer">Yau Mathematical Sciences Center (YMSC)</a>,
<a href="https://www.tsinghua.edu.cn/en/" target="_blank" rel="noopener noreferrer">Tsinghua University (THU)</a>
(mentor: <a href="https://ymsc.tsinghua.edu.cn/en/info/1031/1892.htm" target="_blank" rel="noopener noreferrer">Caucher Birkar</a>).</p>
<p>I received my PhD from <a href="https://www.nus.edu.sg/" target="_blank" rel="noopener noreferrer">National University of Singapore (NUS)</a>
under the supervision of Professor <a href="https://blog.nus.edu.sg/matzdq/" target="_blank" rel="noopener noreferrer">De-Qi Zhang</a> in April 2023.</p>
<p>Before that,
I obtained my BSc from <a href="https://www.zju.edu.cn/" target="_blank" rel="noopener noreferrer">Zhejiang University (ZJU)</a> in June 2018.</p>
<p>My research interests are <em>algebraic geometry</em>, <em>birational geometry</em>.</p>
<p>Here is my <a href="https://mathjiajia.github.io/pdf/cv.pdf" target="_blank" rel="noopener noreferrer">Curriculum Vitae</a></p>
<h2 id="selected-publications" class="headerLink">
<a href="#selected-publications" class="header-mark"></a>selected publications</h2><ol>
<li>
<p>Sheaf stable pairs, Quot-schemes, and birational geometry,
<a href="https://ymsc.tsinghua.edu.cn/en/info/1031/1892.htm" target="_blank" rel="noopener noreferrer">Caucher Birkar</a>, Jia Jia and
<a href="http://www.bimsa.cn/newsinfo/642140.html" target="_blank" rel="noopener noreferrer">Artan Sheshmani</a>,
Nagoya Journal of Mathematics (to appear),
<a href="https://arxiv.org/abs/2406.00230" target="_blank" rel="noopener noreferrer">arXiv:2406.00230</a></p>
</li>
<li>
<p>Automorphisms groups of compact complex surfaces: T-Jordan property, Tits alternative and solvability,
The Journal of Geometric Analysis, <strong>33</strong>, Article number: 219 (2023),
Jia Jia,
<a href="https://arxiv.org/abs/2208.07336" target="_blank" rel="noopener noreferrer">arXiv:2208.07336</a>
| <a href="https://link.springer.com/article/10.1007/s12220-023-01268-z" target="_blank" rel="noopener noreferrer">link</a></p>
</li>
</ol>
</div>
</div></div></main><footer class="footer">
<div class="footer-container"><div class="footer-line"><svg class="icon"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!-- Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M256 8C119.033 8 8 119.033 8 256s111.033 248 248 248 248-111.033 248-248S392.967 8 256 8zm0 448c-110.532 0-200-89.451-200-200 0-110.531 89.451-200 200-200 110.532 0 200 89.451 200 200 0 110.532-89.451 200-200 200zm107.351-101.064c-9.614 9.712-45.53 41.396-104.065 41.396-82.43 0-140.484-61.425-140.484-141.567 0-79.152 60.275-139.401 139.762-139.401 55.531 0 88.738 26.62 97.593 34.779a11.965 11.965 0 0 1 1.936 15.322l-18.155 28.113c-3.841 5.95-11.966 7.282-17.499 2.921-8.595-6.776-31.814-22.538-61.708-22.538-48.303 0-77.916 35.33-77.916 80.082 0 41.589 26.888 83.692 78.277 83.692 32.657 0 56.843-19.039 65.726-27.225 5.27-4.857 13.596-4.039 17.82 1.738l19.865 27.17a11.947 11.947 0 0 1-1.152 15.518z"/></svg>2021 - 2026<span class="author"> <a href="https://mathjiajia.github.io/" target="_blank" rel="noopener noreferrer">Jia Jia</a></span> | <span class="license"><a rel="license external nofollow noopener noreffer" href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank">CC BY-NC 4.0</a></span></div>
<div class="footer-line"></div>
<div class="footer-line">
</div>
</div></footer><div class="tw:print:hidden! tw:flex tw:flex-col tw:fixed tw:right-4 tw:bottom-4 tw:gap-2"><a href="#back-to-top" id="back-to-top-button" class="tw:transition-opacity tw:opacity-0 tw:block tw:bg-bgColor-secondary tw:rounded-full" style="padding: 0.6rem; line-height: 1.3rem; font-size: 1rem;" title="Back to Top">
<svg class="icon"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!-- Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) --><path d="M34.9 289.5l-22.2-22.2c-9.4-9.4-9.4-24.6 0-33.9L207 39c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6 0 33.9L413 289.4c-9.5 9.5-25 9.3-34.3-.4L264 168.6V456c0 13.3-10.7 24-24 24h-32c-13.3 0-24-10.7-24-24V168.6L69.2 289.1c-9.3 9.8-24.8 10-34.3.4z"/></svg>
</a>
</div>
<script type="module">
(async () => {
const supportSpeculationRules = HTMLScriptElement.supports && HTMLScriptElement.supports("speculationrules");
if (!supportSpeculationRules) {
await import("\/lib\/instant.page\/instantpage.min.js");
}
})();
</script>
<script>window.config={"algoliasearch.min.js":"/lib/algoliasearch/algoliasearch-lite.umd.min.js","autocomplete.min.js":"/lib/autocomplete/autocomplete.min.js","data":{"id-1":"Mathematics, Algebraic Geometry"},"search":{"algoliaAppID":"QIR9G366NL","algoliaIndex":"gh","algoliaSearchKey":"fa2c4e59e4d9da7afecfe99c54b233fc","highlightTag":"em","maxResultLength":10,"noResultsFound":"No results found","snippetLength":300,"type":"algolia"},"typeit":{"cursorChar":"|","cursorSpeed":1000,"data":{"id-1":["id-1"]},"duration":-1,"speed":100}};</script><script
src="/lib/typeit/typeit.min.js"
></script><script
src="/js/theme.min.js"
defer
></script>
<script type="speculationrules">
{
"prerender": [
{
"where": { "href_matches": "/*" },
"eagerness": "moderate"
}
]
}
</script>
</body>
</html>