-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresearch.html
140 lines (134 loc) · 4.64 KB
/
research.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
---
layout: default
title: Federico Galetto - Research
keywords: research
active: research
---
<div class="row">
<div class="col">
<section id="interests">
<div class="card">
<div class="card-header">
<h5 class="mb-0">Research Interests</h5>
</div>
<div class="card-body">
My research is in commutative algebra and algebraic geometry, with a focus on minimal free resolutions, and their connections with representation theory and combinatorics. Specific topics of interest include finite group actions on free resolutions and the <a href="references.html#defect">symbolic defect</a> (follow the link for references on the subject). I am also interested in computational methods in commutative algebra and the development of mathematical software.
</div>
</div>
</section>
<section id="publications">
<div class="card">
<div class="card-header">
<h5 class="mb-0">Publications</h5>
</div>
<table class="table notop table-sm mb-0">
<tbody>
{% assign artlist = site.data.pubs.articles | sort: 'date' | reverse %}
{% for item in artlist %}
<tr><td>{{ forloop.rindex }}.</td>
<td>{{ item.title }}<br>
{% if item.cite %}
<a href="{{ item.link }}" target="_blank">{{ item.cite }}</a>
{% if item.arxiv %}
-
{% endif %}
{% endif %}
{% if item.arxiv %}
<a href="http://arxiv.org/abs/{{ item.arxiv }}" target="_blank">arXiv:{{ item.arxiv }}</a></td>
{% endif %}
</tr>
{% endfor %}
</tbody>
</table>
</div>
</section>
<section id="software">
<div class="card">
<div class="card-header">
<h5 class="mb-0">Software</h5>
</div>
<table class="table notop table-sm mb-0">
<tbody>
<tr>
<td><a href="https://github.com/galettof/Jets" target="_blank">Jets</a>, compute jets of various algebraic, geometric and combinatorial objects in <a href="http://www.macaulay2.com" target="_blank">Macaulay2</a>
</td>
</tr>
<tr>
<td><a href="https://github.com/galettof/BettiCharacters" target="_blank">BettiCharacters</a>, finite group characters on free resolutions and graded modules in <a href="http://www.macaulay2.com" target="_blank">Macaulay2</a>
</td>
</tr>
<tr>
<td><a href="https://github.com/galettof/InvariantRing" target="_blank">InvariantRing</a>, computing invariants of group actions on polynomial rings in <a href="http://www.macaulay2.com" target="_blank">Macaulay2</a>
</td>
</tr>
<tr>
<td><a href="https://github.com/galettof/BEMultipliers" target="_blank">BEMultipliers</a>, Buchsbaum-Eisenbud multipliers package for <a href="http://www.macaulay2.com" target="_blank">Macaulay2</a>
</td>
</tr>
<tr>
<td><a href="https://github.com/Macaulay2/M2/blob/master/M2/Macaulay2/packages/Points.m2" target="_blank">Points</a>, ideals of points package for <a href="http://www.macaulay2.com" target="_blank">Macaulay2</a>
</td>
</tr>
<tr>
<td><a href="https://msp.org/jsag/2015/7-1/p03.xhtml" target="_blank">HighestWeights</a>, equivariant resolutions package for <a href="http://www.macaulay2.com" target="_blank">Macaulay2</a>
</td>
</tr>
</tbody>
</table>
</div>
</section>
<section id="expository">
<div class="card">
<div class="card-header">
<h5 class="mb-0">Expository</h5>
</div>
<table class="table notop table-sm mb-0">
<tbody>
<tr>
<td>Betti numbers with a dash of representations,
<a href="https://notes.math.ca/archives/Notesv50n1.pdf#page=16" target="_blank">CMS Notes 50, no. 1, 16, 2018</a></td>
</tr>
</tbody>
</table>
</div>
</section>
<section id="talks">
<div class="card">
<div class="card-header">
<h5 class="mb-0">Select Talks</h5>
</div>
<table class="table notop table-sm mb-0">
<tbody>
{% assign talklist = site.data.talks.talks | sort: 'date' | reverse %}
{% for item in talklist %}
<tr>
<td><a href="files/talks/{{ item.file }}">
{{ item.title }}</a><br>
{{ item.place }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</section>
<section id="dissertation">
<div class="card">
<div class="card-header">
<h5 class="mb-0">Ph.D. Dissertation</h5>
</div>
<table class="table notop table-sm mb-0">
<tbody>
<tr>
<td>
Free resolutions of orbit closures for representations with finitely many orbits<br>
<a href="files/Galetto_thesis.pdf">PDF</a> -
<a href="orbits/index.html" target="_blank">M2 files</a> -
<a href="http://arxiv.org/abs/1210.6410" target="_blank">arXiv:1210.6410</a>
</td>
</tr>
</tbody>
</table>
</div>
</section>
</div>
</div>