sumofsqrts
__all__ = ('SumOfSqrts',)
module-attribute
SumOfSqrts
dataclass
Element of the quadratic rationals \(\mathbb{K}\left(\sqrt{2}, \sqrt{3}, \dots\right)\).
An instance represents an exact algebraic rational of the form
where currently \(\mathbb{K}\) is \(\mathbb{Z}\) (int)
or \(\mathbb{Q}\) (fractions.Fraction).
The immutable class supports exact conversion, ordering, algebraic conjugation, norm computation and arithmetic.
Addition, subtraction & multiplication is closed, mixed coefficients are promoted. Division is promoted to rationals.
Parameters:
-
n(dict[int, int | Fraction] or int or Fraction, default:0) –Mapping of radicands \(k_i\) to factors \(v_i\).
Source code in radicalfield\sumofsqrts.py
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 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 | |
__init__(n=dict())
n = field(default_factory=dict)
class-attribute
instance-attribute
from_expr(e)
staticmethod
Construct a SumOfSqrts from a sympy.Expr.
Parameters:
-
e(Expr) –Expression to convert.
Returns:
-
SumOfSqrts–Expression as
SumOfSqrts.
Raises:
-
ValueError–If the expression could not be converted.
Source code in radicalfield\sumofsqrts.py
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 | |
sqrtOf(n)
staticmethod
Source code in radicalfield\sumofsqrts.py
92 93 94 95 96 97 | |
normalize(d)
staticmethod
Normalise a dict of radicals and rational factors into squarefree form.
Explicitly, each term is transformed as
and for the whole sum:
- zero terms are filtered out,
- type and value checked,
- square components in the radicands are pulled out &
- the result is sorted by increasing radicand.
TODO: inplace version?
Parameters:
-
d(dict[int, int | Fraction]) –Mapping of radicands \(k_i\) to factors \(v_i\).
Returns:
-
dict[int, int | Fraction]–Mathematically equivalent but cleaner copy.
Raises:
-
TypeError–If a radicand is not an integer or a coefficient is not an integer or fraction.
-
ValueError–If a radicand is negative.
Source code in radicalfield\sumofsqrts.py
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 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | |
__post_init__()
Source code in radicalfield\sumofsqrts.py
162 163 164 165 166 167 168 169 170 | |
__len__()
Return the number of terms.
Returns:
-
int–Number of terms.
Source code in radicalfield\sumofsqrts.py
175 176 177 178 179 180 181 182 183 | |
get(key)
Source code in radicalfield\sumofsqrts.py
205 206 | |
keys()
Source code in radicalfield\sumofsqrts.py
208 209 | |
values()
Source code in radicalfield\sumofsqrts.py
211 212 | |
items()
Source code in radicalfield\sumofsqrts.py
214 215 | |
__bool__()
Return whether this element is unequal zero.
Returns:
-
bool–Whether this element is unequal zero.
Source code in radicalfield\sumofsqrts.py
220 221 222 223 224 225 226 227 228 | |
is_rational()
Return whether this element has no radical component.
Notes
Not a property to be consistent with fractions.Fraction.is_integer().
Returns:
-
bool–Whether this element has no radical component.
Source code in radicalfield\sumofsqrts.py
230 231 232 233 234 235 236 237 238 239 240 241 242 | |
as_fraction()
Return this element as a fraction.
Returns:
-
Fraction–This element as a fraction.
Raises:
-
ValueError–If this element is not a fraction.
Source code in radicalfield\sumofsqrts.py
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 | |
is_integer()
Return whether this element is an integer.
Notes
Not a property to be consistent with fractions.Fraction.is_integer().
Returns:
-
bool–Whether this element is an integer.
Source code in radicalfield\sumofsqrts.py
261 262 263 264 265 266 267 268 269 270 271 272 273 | |
__int__()
Return this element as an integer.
Returns:
-
int–This element as an integer.
Raises:
-
ValueError–If this element is not an integer.
Source code in radicalfield\sumofsqrts.py
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 | |
__float__()
Return this element as a float.
Returns:
-
float–This element as a float.
Source code in radicalfield\sumofsqrts.py
292 293 294 295 296 297 298 299 300 301 | |
__eq__(other)
__eq__(other: Self) -> bool
__eq__(other: int) -> bool
__eq__(other: Fraction) -> bool
Source code in radicalfield\sumofsqrts.py
315 316 317 318 319 320 | |
__lt__(other)
__lt__(other: Self) -> bool
__lt__(other: int) -> bool
__lt__(other: Fraction) -> bool
Return whether this element is less than the other.
Notes
Repeatedly finds the largest prime factors in the radicands, separates these terms onto one side and squares until a rational inequality is left. Extremely slow and terrrible complexity.
Parameters:
-
other(Any) –Operand to compare to.
Returns:
-
bool–Whether this element is less than the other.
References
Source code in radicalfield\sumofsqrts.py
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 | |
__abs__()
Source code in radicalfield\sumofsqrts.py
369 370 | |
norm()
Return the algebraic norm.
Product of all conjugates.
Returns:
-
int or Fraction–The algebraic norm.
Source code in radicalfield\sumofsqrts.py
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 | |
conjugate()
Yield the algebraic conjugations.
The algebraic conjugates are all sign flip permutations.
Yields:
-
SumOfSqrts–The algebraic conjugations.
Source code in radicalfield\sumofsqrts.py
403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 | |
__pos__()
Return itself.
Returns:
-
SumOfSqrts–Itself.
Source code in radicalfield\sumofsqrts.py
429 430 431 432 433 434 435 436 437 438 439 440 441 | |
__neg__()
Return the negation.
Returns:
-
SumOfSqrts–The negation.
Source code in radicalfield\sumofsqrts.py
443 444 445 446 447 448 449 450 451 452 453 454 455 | |
__add__(other)
__add__(other: Self) -> Self
__add__(other: int) -> Self
__add__(other: Fraction) -> Self
Return the sum.
Parameters:
-
other(Any) –Other summand.
Returns:
-
SumOfSqrts–The sum.
Source code in radicalfield\sumofsqrts.py
464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 | |
__radd__(other)
__radd__(other: int) -> Self
__radd__(other: Fraction) -> Self
Source code in radicalfield\sumofsqrts.py
497 498 | |
__sub__(other)
__sub__(other: Self) -> Self
__sub__(other: int) -> Self
__sub__(other: Fraction) -> Self
Return the difference.
Parameters:
-
other(Any) –The subtrahend.
Returns:
-
SumOfSqrts–The difference.
Source code in radicalfield\sumofsqrts.py
506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 | |
__rsub__(other)
__rsub__(other: int) -> Self
__rsub__(other: Fraction) -> Self
Source code in radicalfield\sumofsqrts.py
539 540 | |
__mul__(other)
__mul__(other: Self) -> Self
__mul__(other: int) -> Self
__mul__(other: Fraction) -> Self
Return the product.
Parameters:
-
other(Any) –The other factor.
Returns:
-
SumOfSqrts–The product.
Source code in radicalfield\sumofsqrts.py
549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 | |
__rmul__(other)
__rmul__(other: int) -> Self
__rmul__(other: Fraction) -> Self
Source code in radicalfield\sumofsqrts.py
582 583 | |
inv()
Return the multiplicative inverse.
Notes
Starts with \(\frac{1}{x}\) and then repeatedly multiplies \(\frac{\overline{x}^i}{\overline{x}^i}\) where \(\overline{x}^i\) denotes the \(i\)-th conjugate (\(i\)-th permutation of signs flipped). For half of all conjugates (first sign doesn't have to be flipped) because then has the denominator become rational.
Returns:
-
SumOfSqrts–The multiplicative inverse element.
Raises:
-
ZeroDivisionError–If the norm is zero.
See also
Source code in radicalfield\sumofsqrts.py
586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 | |
__truediv__(other)
__truediv__(other: Self) -> Self
__truediv__(other: int) -> Self
__truediv__(other: Fraction) -> Self
Return the quotient.
More often than necessary promoted to rationals.
Parameters:
-
other(Any) –The denominator.
Returns:
-
SumOfSqrts–The quotient.
Raises:
-
ZeroDivisionError–If the norm of the denominator is zero.
Source code in radicalfield\sumofsqrts.py
627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 | |
__rtruediv__(other)
__rtruediv__(other: int) -> Self
__rtruediv__(other: Fraction) -> Self
Source code in radicalfield\sumofsqrts.py
664 665 666 667 | |
__repr__()
Source code in radicalfield\sumofsqrts.py
672 673 674 | |