This repository was archived by the owner on Feb 1, 2023. It is now read-only.
Commit 9a1e3cc
Release Manager
Trac #31558: homomorphism of extension fields do not preserve canonical embeddings of the base
Define a quadratic extension of ℚ[i] and
two homomorphisms to `QQbar`:
{{{
sage: K.<i> = QuadraticField(-1, embedding=QQbar.gen())
sage: L.<a> = K.extension(x^2 - 6*x - 4)
sage: a0, a1 = a.galois_conjugates(QQbar)
sage: f0 = hom(L, QQbar, a0)
sage: f1 = hom(L, QQbar, a1)
}}}
Observed: wrong embedding:
{{{
sage: f0(i) # wrong embedding
0.?e-54 - 1.000000000000000?*I
sage: f1(i) # wrong embedding
0.?e-54 - 1.000000000000000?*I
}}}
Expected: correct embedding:
{{{
sage: f0(i)
0.?e-54 + 1.000000000000000?*I
sage: f1(i)
0.?e-54 + 1.000000000000000?*I
}}}
URL: https://trac.sagemath.org/31558
Reported by: vdelecroix
Ticket author(s): Vincent Delecroix
Reviewer(s): Samuel Lelièvre1 file changed
+26
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
432 | 432 | | |
433 | 433 | | |
434 | 434 | | |
| 435 | + | |
| 436 | + | |
| 437 | + | |
| 438 | + | |
| 439 | + | |
| 440 | + | |
| 441 | + | |
| 442 | + | |
| 443 | + | |
| 444 | + | |
| 445 | + | |
| 446 | + | |
| 447 | + | |
| 448 | + | |
| 449 | + | |
| 450 | + | |
| 451 | + | |
| 452 | + | |
| 453 | + | |
| 454 | + | |
435 | 455 | | |
436 | | - | |
| 456 | + | |
| 457 | + | |
| 458 | + | |
| 459 | + | |
| 460 | + | |
| 461 | + | |
437 | 462 | | |
438 | 463 | | |
439 | 464 | | |
| |||
0 commit comments