Skip to content

Commit

Permalink
Merge pull request #6226 from roed314/stark
Browse files Browse the repository at this point in the history
Add stark units
  • Loading branch information
AndrewVSutherland authored Nov 9, 2024
2 parents a160123 + 344981a commit 77b8faa
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,12 @@ <h2> Newform invariants </h2>
<td>Galois closure of {{ newform.artin_field_display | safe }}</td>
</tr>
{% endif %}
{% if newform.weight == 1 and newform.dim == 1 %}
<tr>
<td>{{ KNOWL('cmf.stark_unit', title='Stark unit')}}:</td>
<td>Root of ${{ newform.stark_minpoly }}$</td>
</tr>
{% endif %}
{% if newform.weight > 1 %}
<tr>
<td>{{ KNOWL('cmf.sato_tate', title='Sato-Tate group') }}: </td>
Expand Down
9 changes: 9 additions & 0 deletions lmfdb/classical_modular_forms/web_newform.py
Original file line number Diff line number Diff line change
Expand Up @@ -615,6 +615,15 @@ def artin_image_display(self):
def artin_image_knowl(self):
return abstract_group_display_knowl(self.artin_image)

@property
def stark_minpoly(self):
# For now, the only data is for m = b = 1, so we just use lucky.
f = db.mf_stark.lucky({"mf_label": self.label}, "stark_minpoly")
if f is not None:
R = PolynomialRing(ZZ, 'x')
f = R(f)
return latex(f)

def rm_and_cm_field_knowl(self, sign=1):
if self.self_twist_discs:
disc = [ d for d in self.self_twist_discs if sign*d > 0 ]
Expand Down

0 comments on commit 77b8faa

Please sign in to comment.