Skip to content

Commit f84b8d0

Browse files
committed
website update: 2025-07-20 12:29:54
1 parent dba3c1d commit f84b8d0

File tree

12 files changed

+318
-37
lines changed

12 files changed

+318
-37
lines changed

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ exclude:
128128
# Academic-specific settings
129129
academic:
130130
show_publications_on_home: true
131-
publications_limit: 5
131+
publications_limit: 3
132132
show_recent_talks: true
133133
cv_pdf_path: "vault/assets/cv.pdf"
134134
research_interests:

vault/.obsidian/workspace.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
"state": {
1414
"type": "markdown",
1515
"state": {
16-
"file": "_teaching/2024-2025-optimization.md",
16+
"file": "_pages/talks.md",
1717
"mode": "source",
1818
"source": false
1919
},
2020
"icon": "lucide-file",
21-
"title": "2024-2025-optimization"
21+
"title": "talks"
2222
}
2323
}
2424
]
@@ -172,36 +172,36 @@
172172
},
173173
"active": "d26e59dbf8d45867",
174174
"lastOpenFiles": [
175-
"_teaching/2025-math-2.md",
176-
"_teaching/2024-2025-optimization.md",
175+
"_pages/teaching.md",
176+
"_pages/contact.md",
177177
"_pages/cv.md",
178+
"_pages/index.md",
179+
"_pages/publications.md",
180+
"_pages/talks.md",
181+
"_pages/research.md",
182+
"_publications/2023-parisian.md",
183+
"_publications/2023-schoenberg.md",
184+
"_publications/2025-vector-valued-fields.md",
185+
"_publications/2025-tvd-and-kld.md",
186+
"_publications/2025-brownian-decision-trees.md",
187+
"_publications/2024-locally-homogenous-vector-valued.md",
188+
"_publications/2025-nanotubes.md",
189+
"_education/2024-phd-actuarial-science.md",
190+
"_teaching/2024-2025-optimization.md",
191+
"_teaching/2025-math-2.md",
178192
"_teaching/2025-dependence-modelling.md",
179193
"_teaching/2021-2024-dependence-modelling.md",
180194
"_teaching/Untitled",
181-
"_pages/index.md",
182-
"_pages/teaching.md",
183195
"_teaching/2021-2024-time-series.md",
184196
"templates/Teaching.md",
185197
"_teaching/2021-2025-loss-models.md",
186198
"_talks/2025-invited-wroclaw.md",
187199
"assets/photo.jpeg",
188-
"_education/2024-phd-actuarial-science.md",
189-
"_pages/research.md",
190-
"_pages/publications.md",
191-
"_publications/2025-nanotubes.md",
192-
"_publications/2025-tvd-and-kld.md",
193200
"_education/2020-msc-physics.md",
194201
"_education/2018-bsc-physics.md",
195-
"_pages/talks.md",
196202
"templates/Page.md",
197-
"templates/Experience.md",
198-
"templates/Talk.md",
199-
"templates/Education.md",
200-
"templates/Publication.md",
201-
"_education/2021-phd-probability-and-statistics.md",
202203
"assets/cv.pdf",
203204
"assets/slides/2025-slides-SPA-conference.pdf",
204-
"_temp/contact 1.md",
205205
"Clippings",
206206
"assets/slides",
207207
"assets",

vault/_pages/cv.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ permalink: /cv/
126126

127127
## Selected Talks & Presentations
128128

129-
{% assign talks_sorted = site.talks | sort: 'date' | reverse | limit: 8 %}
129+
{% assign talks_sorted = site.talks | sort: 'date' | reverse | slice: 0, 8 %}
130130
{% if talks_sorted.size > 0 %}
131131
<div class="cv-section">
132132
{% for talk in talks_sorted %}

vault/_pages/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ I am a mathematician working in probability theory and stochastic processes. My
1212
{% if site.academic.show_publications_on_home %}
1313
### Recent Publications
1414

15-
{% assign recent_publications = site.publications | sort: 'date' | reverse | limit: site.academic.publications_limit %}
15+
{% assign recent_publications = site.publications | sort: 'date' | reverse | slice: 0, site.academic.publications_limit %}
1616
{% if recent_publications.size > 0 %}
1717
<div class="publication-list">
1818
{% for publication in recent_publications %}
@@ -52,7 +52,7 @@ I am a mathematician working in probability theory and stochastic processes. My
5252
{% if site.academic.show_recent_talks %}
5353
### Recent Talks
5454

55-
{% assign recent_talks = site.talks | sort: 'date' | reverse | limit: 3 %}
55+
{% assign recent_talks = site.talks | sort: 'date' | reverse | slice: 0, 3 %}
5656
{% if recent_talks.size > 0 %}
5757
<div class="publication-list">
5858
{% for talk in recent_talks %}

vault/_pages/talks.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: default
33
title: Talks & Presentations
44
permalink: /talks/
55
---
6-
6+
{% assign current_year = "now" | date: "%Y" | plus: 0 %}
77
# Talks & Presentations
88

99
Below is a comprehensive list of my presentations, organized by year and type.
@@ -31,9 +31,9 @@ Below is a comprehensive list of my presentations, organized by year and type.
3131
*No upcoming talks scheduled. Check back for updates.*
3232
{% endif %}
3333

34-
{% assign recent_talks = site.talks | where_exp: "talk", "talk.date <= site.time" | where: "year", 2024 | sort: "date" | reverse %}
34+
{% assign recent_talks = site.talks | where_exp: "talk", "talk.date <= site.time" | where: "year", {{ current_year }} | sort: "date" | reverse %}
3535
{% if recent_talks.size > 0 %}
36-
## Recent Presentations (2025)
36+
## Recent Presentations ({{ current_year }})
3737

3838
{% for talk in recent_talks %}
3939
### {{ talk.title }}
@@ -68,8 +68,6 @@ Below is a comprehensive list of my presentations, organized by year and type.
6868
{% for talk in keynote_talks %}
6969
- **{{ talk.title }}** - *{{ talk.venue }}* ({{ talk.date | date: "%Y" }})
7070
{% endfor %}
71-
{% else %}
72-
*Keynote presentations will be listed here.*
7371
{% endif %}
7472

7573
{% assign invited_talks = site.talks | where: "type", "invited" | sort: "date" | reverse | limit: 5 %}
@@ -81,8 +79,6 @@ Below is a comprehensive list of my presentations, organized by year and type.
8179
{% if site.talks.size > 5 %}
8280
[View all invited talks →](#all-talks)
8381
{% endif %}
84-
{% else %}
85-
*Invited seminars will be listed here.*
8682
{% endif %}
8783

8884
{% assign conference_talks = site.talks | where: "type", "contributed" | sort: "date" | reverse | limit: 5 %}
@@ -94,8 +90,6 @@ Below is a comprehensive list of my presentations, organized by year and type.
9490
{% if site.talks.size > 5 %}
9591
[View all conference talks →](#all-talks)
9692
{% endif %}
97-
{% else %}
98-
*Conference presentations will be listed here.*
9993
{% endif %}
10094

10195
## Past Speaking Engagements by Year
@@ -104,7 +98,8 @@ Below is a comprehensive list of my presentations, organized by year and type.
10498

10599
{% assign talks_by_year = site.talks | group_by: 'year' | sort: 'name' | reverse %}
106100
{% for year_group in talks_by_year %}
107-
{% if year_group.name != "2024" %}
101+
{% if year_group.name < {{ current_year }} %}
102+
108103
### {{ year_group.name }}
109104

110105
<div class="publication-list">
@@ -140,7 +135,9 @@ Below is a comprehensive list of my presentations, organized by year and type.
140135
{% assign conference_count = site.talks | where: "type", "contributed" | size %}
141136

142137
- **Total Presentations:** {{ total_talks }}
143-
- **Keynote Addresses:** {{ keynote_count }}
138+
{% if keynote_count > 0 %}
139+
- **Keynote Addresses:** {{ keynote_count }}
140+
{% endif %}
144141
- **Invited Seminars:** {{ invited_count }}
145142
- **Conference Talks:** {{ conference_count }}
146143

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
---
2+
layout: publication
3+
title: Parisian ruin with power-asymmetric variance near the optimal point with application to many-inputs proportional reinsurance
4+
date: 2025-07-20
5+
year: 2023
6+
authors:
7+
- Pavel Ievlev
8+
venue: Stochastic Models
9+
type: academic
10+
status: published
11+
abstract: This paper investigates the Parisian ruin probability for processes with power-asymmetric behavior of the variance near the unique optimal point. We derive the exact asymptotics as the ruin boundary tends to infinity and extend the previous result arXiv:1504.07061 to the case when the length of Parisian interval is of Pickands scale. As a primary application, we extend the recent result arXiv:2010.00222 on the many inputs proportional reinsurance fractional Brownian motion risk model to the Parisian ruin.
12+
keywords:
13+
- Parisian ruin
14+
- Ruin probability
15+
- fractional Brownian motion
16+
doi: 10.1080/15326349.2023.2278527
17+
arxiv: "2205.14481"
18+
pdf:
19+
bibtex: |-
20+
@article {MR4777226,
21+
AUTHOR = {Ievlev, Pavel},
22+
TITLE = {Parisian ruin with power-asymmetric variance near the optimal point with application to many-inputs proportional reinsurance},
23+
JOURNAL = {Stoch. Models},
24+
FJOURNAL = {Stochastic Models},
25+
VOLUME = {40},
26+
YEAR = {2024},
27+
NUMBER = {3},
28+
PAGES = {518--535},
29+
ISSN = {1532-6349,1532-4214},
30+
MRCLASS = {60G15 (60G70)},
31+
MRNUMBER = {4777226},
32+
DOI = {10.1080/15326349.2023.2278527},
33+
URL = {https://doi.org/10.1080/15326349.2023.2278527}
34+
}
35+
---
36+
37+
# Untitled
38+
39+
## Overview
40+
41+
Detailed description of the publication, methodology, results, and impact.
42+
43+
## Key Contributions
44+
45+
- Contribution 1
46+
- Contribution 2
47+
- Contribution 3
48+
49+
## Methodology
50+
51+
Brief description of the approach used.
52+
53+
## Results
54+
55+
Summary of key findings.
56+
57+
## Impact
58+
59+
Discussion of the paper's significance and citations.
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
---
2+
layout: publication
3+
title: A matrix-valued Schoenberg's problem and its applications
4+
date: 2025-07-20
5+
year: 2023
6+
authors:
7+
- Pavel Ievlev
8+
- Svyatoslav Novikov
9+
venue: Electronic Communications in Probability
10+
type: academic
11+
status: published
12+
abstract: Brief description of the paper's contribution and findings.
13+
keywords:
14+
- Matrix-valued positive definite functions
15+
- Positive definiteness
16+
- Multivariate processes
17+
- Gaussian processes
18+
- Multivariate Ornstein-Uhlenbeck process
19+
- Multivariate fractional Brownian motion
20+
- Cross-variogram
21+
- Stationary time-series
22+
doi: 10.1214/23-ecp562
23+
bibtex: |-
24+
@article {MR4684061,
25+
AUTHOR = {Ievlev, Pavel and Novikov, Svyatoslav},
26+
TITLE = {A matrix-valued {S}choenberg's problem and its applications},
27+
JOURNAL = {Electron. Commun. Probab.},
28+
FJOURNAL = {Electronic Communications in Probability},
29+
VOLUME = {28},
30+
YEAR = {2023},
31+
PAGES = {Paper No. 48, 12},
32+
ISSN = {1083-589X},
33+
MRCLASS = {42A82 (47A56 60G15 60G60)},
34+
MRNUMBER = {4684061},
35+
MRREVIEWER = {Ana\ Paula\ Peron},
36+
DOI = {10.1214/23-ecp562},
37+
URL = {https://doi.org/10.1214/23-ecp562}
38+
}
39+
---
40+
41+
# Untitled
42+
43+
## Overview
44+
45+
Detailed description of the publication, methodology, results, and impact.
46+
47+
## Key Contributions
48+
49+
- Contribution 1
50+
- Contribution 2
51+
- Contribution 3
52+
53+
## Methodology
54+
55+
Brief description of the approach used.
56+
57+
## Results
58+
59+
Summary of key findings.
60+
61+
## Impact
62+
63+
Discussion of the paper's significance and citations.
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
---
2+
layout: publication
3+
title: Extremes of locally-homogenous vector-valued Gaussian processes
4+
date: 2025-07-20
5+
year: 2024
6+
authors:
7+
- Pavel Ievlev
8+
venue: Extremes
9+
type: academic
10+
status: published
11+
abstract:
12+
keywords:
13+
- Locally-homogeneous Gaussian fields
14+
- Extremes of Gaussian processes
15+
doi: 10.1007/s10687-023-00483-9
16+
arxiv: "2401.05527"
17+
pdf:
18+
bibtex: |-
19+
@article {MR4744268,
20+
AUTHOR = {Ievlev, Pavel},
21+
TITLE = {Extremes of locally-homogenous vector-valued {G}aussian processes},
22+
JOURNAL = {Extremes},
23+
FJOURNAL = {Extremes. Statistical Theory and Applications in Science, Engineering and Economics},
24+
VOLUME = {27},
25+
YEAR = {2024},
26+
NUMBER = {2},
27+
PAGES = {219--245},
28+
ISSN = {1386-1999},
29+
MRCLASS = {60G15 (60G70)},
30+
MRNUMBER = {4744268},
31+
DOI = {10.1007/s10687-023-00483-9},
32+
URL = {https://doi.org/10.1007/s10687-023-00483-9}
33+
}
34+
---
35+
36+
# Untitled
37+
38+
## Overview
39+
40+
Detailed description of the publication, methodology, results, and impact.
41+
42+
## Key Contributions
43+
44+
- Contribution 1
45+
- Contribution 2
46+
- Contribution 3
47+
48+
## Methodology
49+
50+
Brief description of the approach used.
51+
52+
## Results
53+
54+
Summary of key findings.
55+
56+
## Impact
57+
58+
Discussion of the paper's significance and citations.

0 commit comments

Comments
 (0)