-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: arbitrary base rings for AlgAssAbsOrd #1728
Conversation
fd47cc5
to
273bc7d
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1728 +/- ##
==========================================
- Coverage 76.53% 76.40% -0.13%
==========================================
Files 360 360
Lines 113622 113864 +242
==========================================
+ Hits 86961 86999 +38
- Misses 26661 26865 +204
|
- To generalize some constructions, we need to replace FakeFmpqMat with QQMatrix. Since both have different behaviour for `hnf` related functions, we first make the names of the methods for FakeFmpqMat unique.
273bc7d
to
505c640
Compare
17c0c99
to
14d38b4
Compare
We can compute trivial examples: Compute a maximal
|
@fieker this here is to algebras over global fields, what |
4308263
to
7d774c7
Compare
On Fri, Jan 31, 2025 at 02:44:59PM -0800, Tommy Hofmann wrote:
We can compute trivial examples: Compute a maximal $\mathbf{F}_3[X]$-order in $\mathrm{M}_2(\mathbf{F}_3[X])$ and a maximal $R$-order, where $R$ is the degree localization.
```
julia> F = GF(3);
julia> K, x = rational_function_field(F, :x);
julia> Fx = K.fraction_field.base_ring; # without words
julia> Finvx = localization(K, degree);
julia> A = matrix_algebra(K, 2);
julia> A.is_simple = 1
1
julia> maximal_order(any_order(A, Fx))
Order of Matrix algebra of dimension 4 over Rational function field over F with basis matrix
[1 0 0 0; 0 1 0 0; 0 0 1 0; 0 0 0 1]
julia> maximal_order(any_order(A, Finvx))
Order of Matrix algebra of dimension 4 over Rational function field over F with basis matrix
[1 0 0 0; 0 1 0 0; 0 0 1 0; 0 0 0 1]
```
This is cool stuff!
… --
Reply to this email directly or view it on GitHub:
#1728 (comment)
You are receiving this because you are subscribed to this thread.
Message ID: ***@***.***>
|
No description provided.