-
Notifications
You must be signed in to change notification settings - Fork 138
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
TropicalGeometry: new positive tropicalizations #4447
base: master
Are you sure you want to change the base?
Conversation
2b70c6a
to
f71e842
Compare
f71e842
to
a5778ed
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #4447 +/- ##
==========================================
- Coverage 84.55% 84.43% -0.13%
==========================================
Files 672 675 +3
Lines 88880 90060 +1180
==========================================
+ Hits 75152 76039 +887
- Misses 13728 14021 +293
🚀 New features to boost your workflow:
|
@MateTelek Would you be able to review this pull request for me? |
Is this comment obsolete or how did you proceed? I am asking since #4061 is not merged. |
ping @YueRen |
Co-authored-by: Lars Göttgens <[email protected]>
Co-authored-by: Lars Göttgens <[email protected]>
Co-authored-by: Lars Göttgens <[email protected]>
Co-authored-by: Lars Göttgens <[email protected]>
I've reminded @MateTelek about the review, as the code builds on his work. Once he gives a green light, it should be good to go. |
I apologize for the late reply. I like the code very much, I have only one question/comment that I couldn't make sense of. According to the documentation, the function positive_tropical_variety should work with both the trivial valuation and the t-adic valuation. When I run the code, C = matrix(QQ,[[-3,1,-1,-2,2],[-1,1,-1,-1,1]])
K,t = rational_function_field(QQ,"t")
nu = tropical_semiring_map(K,t)
R,x = polynomial_ring(K,ncols(C))
Ilin = ideal(C*gens(R))
TropL = positive_tropical_variety(Ilin,nu)
n_maximal_polyhedra(TropL) == 4
C = matrix(QQ,[[-3,1,-1,-2,2],[-1,1,-1,-1,1]])
R,x = polynomial_ring(QQ,ncols(C))
nu = tropical_semiring_map(QQ)
I = ideal(C*gens(R))
TropPlusI = positive_tropical_variety(I,nu)
n_maximal_polyhedra(TropPlusI) == 5 once I get 4 maximal cones and other times 5, which is surprising since the tropicalization should not depend on the field extension. Is there an easy explanation for why this happens? |
@MateTelek: thanks for the review. The result is quite weird indeed, I will look into it! |
@MateTelek What you stumbled upon comes from the fact that a Bergman fan has multiple fan structures. Let's forget about positivity and just look at the tropical linear space:
If you look at their maximal polyhedra, you see that
A quick test shows that (modulo the lineality space), rays
What you see here is a cone in the coarse structure Back to positive tropicalizations, you can see the exact same effect:
Notice how:
|
I've emailed @MateTelek to see whether my explanation above makes sense. If he agrees, then this PR is ready to be merged. |
@YueRen Thanks for the explanation. I agree with you, I missed that the Bergman fan can have different fan structures. |
This is the final pull request from the Leipzig workshop, adding the capability of computing positive tropicalizations for linear and binomial ideals (required for example for Telek-Rose).
It is a draft for now, as it is contingent on #4061 being merged. (I don't think it makes a lot of sense if
tropical_variety
returns a list ofTropicalVariety
whilepositive_tropical_variety
returns a singleTropicalVariety
)