2018-03-11 17:05:17 +00:00
|
|
|
#! /usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vim:fenc=utf-8
|
|
|
|
#
|
|
|
|
# Copyright © 2017 lafrite <lafrite@Poivre>
|
|
|
|
#
|
|
|
|
# Distributed under terms of the MIT license.
|
|
|
|
|
|
|
|
"""
|
|
|
|
Multiply MO
|
|
|
|
"""
|
|
|
|
|
2018-03-17 07:28:43 +00:00
|
|
|
from multipledispatch import Dispatcher
|
2018-03-11 17:05:17 +00:00
|
|
|
from ..tree import Tree
|
2018-12-21 10:26:37 +00:00
|
|
|
from ..MO import MO, MOnumber, MOstr
|
2018-03-11 17:05:17 +00:00
|
|
|
from ..MO.fraction import MOFraction
|
2018-03-18 07:34:46 +00:00
|
|
|
from ..MO.monomial import MOstrPower, MOMonomial
|
2018-11-23 10:53:37 +00:00
|
|
|
from ..MO.polynomial import MOpolynomial
|
2018-03-17 08:55:32 +00:00
|
|
|
from .filters import special_case
|
2018-03-11 17:05:17 +00:00
|
|
|
|
2018-03-17 07:28:43 +00:00
|
|
|
multiply_doc = """ Multiply MOs
|
2018-03-11 17:05:17 +00:00
|
|
|
|
2018-03-17 07:28:43 +00:00
|
|
|
:param left: left MO
|
|
|
|
:param right: right MO
|
|
|
|
:returns: Tree or MO
|
2018-03-11 17:05:17 +00:00
|
|
|
|
2018-03-17 07:28:43 +00:00
|
|
|
"""
|
2018-03-11 17:05:17 +00:00
|
|
|
|
2018-03-17 07:28:43 +00:00
|
|
|
multiply = Dispatcher("multiply", doc=multiply_doc)
|
2018-03-11 17:05:17 +00:00
|
|
|
|
2019-05-14 04:55:56 +00:00
|
|
|
|
2018-03-17 08:55:32 +00:00
|
|
|
def multiply_filter(left, right):
|
|
|
|
""" Automatic multiply on MO
|
|
|
|
|
|
|
|
:param left: MO
|
|
|
|
:param right: MO
|
|
|
|
:returns: MO if it is a special case, nothing other wise
|
|
|
|
|
|
|
|
>>> a = MOnumber(1)
|
|
|
|
>>> b = MOFraction(1, 2)
|
|
|
|
>>> multiply(a, b)
|
|
|
|
<MOFraction 1 / 2>
|
|
|
|
>>> multiply(b, a)
|
|
|
|
<MOFraction 1 / 2>
|
|
|
|
>>> a = MOnumber(0)
|
|
|
|
>>> b = MOFraction(1, 2)
|
|
|
|
>>> multiply(a, b)
|
|
|
|
<MOnumber 0>
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
if left == 0:
|
|
|
|
return left
|
|
|
|
except TypeError:
|
|
|
|
pass
|
|
|
|
try:
|
|
|
|
if right == 0:
|
|
|
|
return right
|
|
|
|
except TypeError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
try:
|
|
|
|
if left == 1:
|
|
|
|
return right
|
|
|
|
except TypeError:
|
|
|
|
pass
|
|
|
|
try:
|
|
|
|
if right == 1:
|
|
|
|
return left
|
|
|
|
except TypeError:
|
|
|
|
pass
|
|
|
|
|
2019-05-14 04:55:56 +00:00
|
|
|
|
2018-03-17 07:28:43 +00:00
|
|
|
@multiply.register(MOnumber, MOnumber)
|
2018-03-17 08:55:32 +00:00
|
|
|
@special_case(multiply_filter)
|
2018-03-11 17:05:17 +00:00
|
|
|
def monumber_monumber(left, right):
|
2018-03-17 07:28:43 +00:00
|
|
|
""" Simply multiply values
|
2018-03-11 17:05:17 +00:00
|
|
|
|
|
|
|
>>> a = MOnumber(4)
|
|
|
|
>>> b = MOnumber(6)
|
2018-03-17 07:28:43 +00:00
|
|
|
>>> multiply(a, b)
|
2018-03-11 17:05:17 +00:00
|
|
|
<MOnumber 24>
|
|
|
|
|
|
|
|
"""
|
|
|
|
return MO.factory(left.value * right.value)
|
|
|
|
|
2019-05-14 04:55:56 +00:00
|
|
|
|
2018-03-17 07:28:43 +00:00
|
|
|
@multiply.register(MOnumber, MOFraction)
|
2018-03-17 08:55:32 +00:00
|
|
|
@special_case(multiply_filter)
|
2018-03-11 17:05:17 +00:00
|
|
|
def monumber_mofraction(left, right):
|
2018-03-17 07:28:43 +00:00
|
|
|
""" Return division Tree with on the numertor MOnumber times numerator of MOFraction
|
2018-03-11 17:05:17 +00:00
|
|
|
|
|
|
|
>>> a = MOnumber(4)
|
|
|
|
>>> b = MOFraction(6, 5)
|
2018-03-17 07:28:43 +00:00
|
|
|
>>> print(multiply(a, b))
|
2018-03-11 17:05:17 +00:00
|
|
|
/
|
|
|
|
> *
|
|
|
|
| > 4
|
|
|
|
| > 6
|
|
|
|
> 5
|
|
|
|
>>> b = MOFraction(6, 5, True)
|
2018-03-17 07:28:43 +00:00
|
|
|
>>> print(multiply(a, b))
|
2018-03-12 04:34:26 +00:00
|
|
|
/
|
|
|
|
> *
|
|
|
|
| > 4
|
|
|
|
| > -
|
|
|
|
| | > None
|
2018-03-11 17:05:17 +00:00
|
|
|
| | > 6
|
2018-03-12 04:34:26 +00:00
|
|
|
> 5
|
2018-03-11 17:05:17 +00:00
|
|
|
|
|
|
|
"""
|
2018-03-12 04:34:26 +00:00
|
|
|
num = Tree("*", left, right.numerator)
|
|
|
|
return Tree("/", num, right._denominator)
|
2018-03-11 17:05:17 +00:00
|
|
|
|
2019-05-14 04:55:56 +00:00
|
|
|
|
2018-03-17 07:28:43 +00:00
|
|
|
@multiply.register(MOFraction, MOnumber)
|
2018-03-17 08:55:32 +00:00
|
|
|
@special_case(multiply_filter)
|
2018-03-11 17:05:17 +00:00
|
|
|
def mofraction_monumber(left, right):
|
2018-03-17 07:28:43 +00:00
|
|
|
""" Return division Tree with on the numertor MOnumber times numerator of MOFraction
|
2018-03-11 17:05:17 +00:00
|
|
|
|
|
|
|
>>> a = MOFraction(6, 5)
|
|
|
|
>>> b = MOnumber(4)
|
2018-03-17 07:28:43 +00:00
|
|
|
>>> print(multiply(a, b))
|
2018-03-11 17:05:17 +00:00
|
|
|
/
|
|
|
|
> *
|
|
|
|
| > 6
|
|
|
|
| > 4
|
|
|
|
> 5
|
|
|
|
"""
|
2018-03-12 04:34:26 +00:00
|
|
|
num = Tree("*", left.numerator, right)
|
|
|
|
return Tree("/", num, left._denominator)
|
2018-03-11 17:05:17 +00:00
|
|
|
|
2019-05-14 04:55:56 +00:00
|
|
|
|
2018-03-17 07:28:43 +00:00
|
|
|
@multiply.register(MOFraction, MOFraction)
|
2018-03-17 08:55:32 +00:00
|
|
|
@special_case(multiply_filter)
|
2018-03-13 14:12:41 +00:00
|
|
|
def mofraction_mofraction(left, right):
|
2018-03-17 07:28:43 +00:00
|
|
|
""" Multiply two mofractions (numertors together and denominators together)
|
2018-03-13 14:12:41 +00:00
|
|
|
|
|
|
|
>>> a = MOFraction(1, 5)
|
|
|
|
>>> b = MOFraction(4, 5)
|
2018-03-17 07:28:43 +00:00
|
|
|
>>> print(multiply(a, b))
|
2018-03-13 14:12:41 +00:00
|
|
|
/
|
|
|
|
> *
|
|
|
|
| > 1
|
|
|
|
| > 4
|
|
|
|
> *
|
|
|
|
| > 5
|
|
|
|
| > 5
|
|
|
|
"""
|
|
|
|
num = Tree("*", left.numerator, right.numerator)
|
|
|
|
denom = Tree("*", left.denominator, right.denominator)
|
|
|
|
return Tree("/", num, denom)
|
|
|
|
|
2019-05-14 04:55:56 +00:00
|
|
|
|
2018-03-17 07:28:43 +00:00
|
|
|
@multiply.register((MOnumber, MOFraction), MOMonomial)
|
2018-03-17 08:55:32 +00:00
|
|
|
@special_case(multiply_filter)
|
2018-03-17 05:45:23 +00:00
|
|
|
def moscalar_monomonial(left, right):
|
|
|
|
""" Multiply a scalar with a monomial
|
|
|
|
|
|
|
|
>>> a = MOnumber(4)
|
2018-03-18 07:34:46 +00:00
|
|
|
>>> x = MOstrPower('x', 4)
|
|
|
|
>>> b = MOMonomial(5, x)
|
|
|
|
>>> print(multiply(a, b))
|
|
|
|
*
|
|
|
|
> *
|
|
|
|
| > 4
|
|
|
|
| > 5
|
2018-12-21 11:20:13 +00:00
|
|
|
> x^4
|
2018-03-18 07:34:46 +00:00
|
|
|
|
|
|
|
"""
|
2019-05-14 04:55:56 +00:00
|
|
|
coefficient = Tree("*", left, right.coefficient)
|
|
|
|
return Tree("*", coefficient, right.strpower)
|
|
|
|
|
2018-03-18 07:34:46 +00:00
|
|
|
|
|
|
|
@multiply.register(MOMonomial, (MOnumber, MOFraction))
|
|
|
|
@special_case(multiply_filter)
|
|
|
|
def monomonial_moscalar(left, right):
|
|
|
|
""" Multiply a momonial with a scalar
|
|
|
|
|
|
|
|
>>> x = MOstrPower('x', 4)
|
|
|
|
>>> a = MOMonomial(5, x)
|
|
|
|
>>> b = MOnumber(4)
|
|
|
|
>>> print(multiply(a, b))
|
|
|
|
*
|
|
|
|
> *
|
|
|
|
| > 4
|
|
|
|
| > 5
|
2018-12-21 11:20:13 +00:00
|
|
|
> x^4
|
2018-03-18 07:34:46 +00:00
|
|
|
|
|
|
|
"""
|
2019-05-14 04:55:56 +00:00
|
|
|
coefficient = Tree("*", right, left.coefficient)
|
|
|
|
return Tree("*", coefficient, left.strpower)
|
|
|
|
|
2018-03-18 07:34:46 +00:00
|
|
|
|
|
|
|
@multiply.register(MOstr, MOstrPower)
|
|
|
|
@special_case(multiply_filter)
|
|
|
|
def mostr_mostrpower(left, right):
|
|
|
|
""" Multiply a MOstr and a MOstrPower
|
2018-03-17 05:45:23 +00:00
|
|
|
|
2018-03-18 07:34:46 +00:00
|
|
|
>>> a = MOstr('x')
|
|
|
|
>>> b = MOstrPower('x', 4)
|
|
|
|
>>> multiply(a, b)
|
|
|
|
<MOstrPower x^5>
|
|
|
|
>>> a = MOstr('x')
|
|
|
|
>>> b = MOstrPower('y', 4)
|
|
|
|
>>> multiply(a, b)
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
2018-11-23 10:24:33 +00:00
|
|
|
NotImplementedError: Can't multiply MOstr and MOstrPower if they don'thave same variable (got x and y)
|
2018-03-17 05:45:23 +00:00
|
|
|
"""
|
2018-03-18 07:34:46 +00:00
|
|
|
if left.variable != right.variable:
|
2019-05-14 04:55:56 +00:00
|
|
|
raise NotImplementedError(
|
|
|
|
"Can't multiply MOstr and MOstrPower if they don't"
|
|
|
|
f"have same variable (got {left.variable} and {right.variable})"
|
|
|
|
)
|
|
|
|
return MOstrPower(left.variable, right.power.value + 1)
|
|
|
|
|
2018-03-17 05:45:23 +00:00
|
|
|
|
2018-10-10 08:28:38 +00:00
|
|
|
@multiply.register(MOstrPower, MOstr)
|
|
|
|
@special_case(multiply_filter)
|
|
|
|
def mostr_mostrpower(left, right):
|
|
|
|
""" Multiply a MOstr and a MOstrPower
|
|
|
|
|
|
|
|
>>> a = MOstrPower('x', 4)
|
|
|
|
>>> b = MOstr('x')
|
|
|
|
>>> multiply(a, b)
|
|
|
|
<MOstrPower x^5>
|
|
|
|
>>> a = MOstrPower('y', 4)
|
|
|
|
>>> b = MOstr('x')
|
|
|
|
>>> multiply(a, b)
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
2018-11-23 10:24:33 +00:00
|
|
|
NotImplementedError: Can't multiply MOstr and MOstrPower if they don'thave same variable (got x and y)
|
2018-10-10 08:28:38 +00:00
|
|
|
"""
|
|
|
|
if left.variable != right.variable:
|
2019-05-14 04:55:56 +00:00
|
|
|
raise NotImplementedError(
|
|
|
|
"Can't multiply MOstr and MOstrPower if they don't"
|
|
|
|
f"have same variable (got {left.variable} and {right.variable})"
|
|
|
|
)
|
|
|
|
return MOstrPower(left.variable, left.power.value + 1)
|
|
|
|
|
2018-10-10 08:28:38 +00:00
|
|
|
|
2018-11-23 10:24:33 +00:00
|
|
|
@multiply.register(MOstr, MOstr)
|
|
|
|
@special_case(multiply_filter)
|
|
|
|
def mostr_mostr(left, right):
|
|
|
|
""" Multiply a MOstr and a MOstr
|
|
|
|
|
|
|
|
:example:
|
|
|
|
>>> a = MOstr('x')
|
|
|
|
>>> b = MOstr('x')
|
|
|
|
>>> multiply(a, b)
|
|
|
|
<MOstrPower x^2>
|
|
|
|
>>> a = MOstr('y')
|
|
|
|
>>> b = MOstr('x')
|
|
|
|
>>> multiply(a, b)
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
NotImplementedError: Can't multiply MOstr and MOstr if they don'thave same variable (got y and x)
|
|
|
|
"""
|
|
|
|
if left.variable != right.variable:
|
2019-05-14 04:55:56 +00:00
|
|
|
raise NotImplementedError(
|
|
|
|
"Can't multiply MOstr and MOstr if they don't"
|
|
|
|
f"have same variable (got {left.variable} and {right.variable})"
|
|
|
|
)
|
2018-11-23 10:24:33 +00:00
|
|
|
return MOstrPower(left.variable, 2)
|
|
|
|
|
2019-05-14 04:55:56 +00:00
|
|
|
|
2018-10-10 08:28:38 +00:00
|
|
|
@multiply.register(MOstrPower, MOstrPower)
|
|
|
|
@special_case(multiply_filter)
|
|
|
|
def mostr_mostrpower(left, right):
|
|
|
|
""" Multiply a MOstrPower and a MOstrPower
|
|
|
|
|
|
|
|
>>> a = MOstrPower('x', 2)
|
|
|
|
>>> b = MOstrPower('x', 4)
|
|
|
|
>>> print(multiply(a, b))
|
|
|
|
^
|
|
|
|
> x
|
|
|
|
> +
|
|
|
|
| > 2
|
|
|
|
| > 4
|
|
|
|
>>> a = MOstrPower('x', 2)
|
|
|
|
>>> b = MOstrPower('y', 4)
|
|
|
|
>>> multiply(a, b)
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
2018-11-23 10:24:33 +00:00
|
|
|
NotImplementedError: Can't multiply MOstrPower and MOstrPower if they don'thave same variable (got x and y)
|
2018-10-10 08:28:38 +00:00
|
|
|
"""
|
|
|
|
if left.variable != right.variable:
|
2019-05-14 04:55:56 +00:00
|
|
|
raise NotImplementedError(
|
|
|
|
"Can't multiply MOstrPower and MOstrPower if they don't"
|
|
|
|
f"have same variable (got {left.variable} and {right.variable})"
|
|
|
|
)
|
2018-10-10 08:28:38 +00:00
|
|
|
power = Tree("+", left.power, right.power)
|
|
|
|
return Tree("^", left.variable, power)
|
|
|
|
|
2019-05-14 04:55:56 +00:00
|
|
|
|
2018-11-23 10:24:33 +00:00
|
|
|
@multiply.register(MOstrPower, MOMonomial)
|
|
|
|
@special_case(multiply_filter)
|
2018-12-21 11:20:13 +00:00
|
|
|
def mostrpower_momonomial(left, right):
|
2018-11-23 10:24:33 +00:00
|
|
|
""" Multiply a MOstrPower and a MOMonomial
|
|
|
|
|
|
|
|
>>> a = MOstrPower('x', 2)
|
|
|
|
>>> b = MOMonomial(2, 'x', 4)
|
|
|
|
>>> print(multiply(a, b))
|
|
|
|
*
|
|
|
|
> 2
|
|
|
|
> ^
|
|
|
|
| > x
|
|
|
|
| > +
|
|
|
|
| | > 2
|
|
|
|
| | > 4
|
|
|
|
>>> a = MOstrPower('x', 2)
|
|
|
|
>>> b = MOMonomial(2, 'y', 4)
|
|
|
|
>>> multiply(a, b)
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
NotImplementedError: Can't multiply MOstrPower and Monomial if they don'thave same variable (got x and y)
|
|
|
|
"""
|
|
|
|
if left.variable != right.variable:
|
2019-05-14 04:55:56 +00:00
|
|
|
raise NotImplementedError(
|
|
|
|
"Can't multiply MOstrPower and Monomial if they don't"
|
|
|
|
f"have same variable (got {left.variable} and {right.variable})"
|
|
|
|
)
|
2018-11-23 10:24:33 +00:00
|
|
|
power = Tree("+", left.power, right.power)
|
|
|
|
monome = Tree("^", left.variable, power)
|
|
|
|
return Tree("*", right.coefficient, monome)
|
|
|
|
|
2019-05-14 04:55:56 +00:00
|
|
|
|
2018-11-23 10:24:33 +00:00
|
|
|
@multiply.register(MOMonomial, MOstrPower)
|
|
|
|
@special_case(multiply_filter)
|
|
|
|
def momonomial_mostr(left, right):
|
|
|
|
""" Multiply a MOMonomial and a MOstrPower
|
|
|
|
|
|
|
|
>>> a = MOMonomial(2, 'x', 4)
|
|
|
|
>>> b = MOstrPower('x', 2)
|
|
|
|
>>> print(multiply(a, b))
|
|
|
|
*
|
|
|
|
> 2
|
|
|
|
> ^
|
|
|
|
| > x
|
|
|
|
| > +
|
|
|
|
| | > 4
|
|
|
|
| | > 2
|
|
|
|
>>> a = MOMonomial(2, 'y', 4)
|
|
|
|
>>> b = MOstrPower('x', 2)
|
|
|
|
>>> multiply(a, b)
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
NotImplementedError: Can't multiply MOstrPower and Monomial if they don'thave same variable (got y and x)
|
|
|
|
|
|
|
|
"""
|
|
|
|
if left.variable != right.variable:
|
2019-05-14 04:55:56 +00:00
|
|
|
raise NotImplementedError(
|
|
|
|
"Can't multiply MOstrPower and Monomial if they don't"
|
|
|
|
f"have same variable (got {left.variable} and {right.variable})"
|
|
|
|
)
|
2018-11-23 10:24:33 +00:00
|
|
|
power = Tree("+", left.power, right.power)
|
|
|
|
monome = Tree("^", left.variable, power)
|
|
|
|
return Tree("*", left.coefficient, monome)
|
|
|
|
|
2019-05-14 04:55:56 +00:00
|
|
|
|
2018-11-23 10:24:33 +00:00
|
|
|
@multiply.register(MOstr, MOMonomial)
|
|
|
|
@special_case(multiply_filter)
|
|
|
|
def mostr_momonomial(left, right):
|
|
|
|
""" Multiply a MOstr and a MOMonomial
|
|
|
|
|
|
|
|
>>> a = MOstr('x')
|
|
|
|
>>> b = MOMonomial(2, 'x', 4)
|
|
|
|
>>> print(multiply(a, b))
|
2018-12-21 11:20:13 +00:00
|
|
|
2x^5
|
2018-11-23 10:24:33 +00:00
|
|
|
>>> a = MOstr('x')
|
|
|
|
>>> b = MOMonomial(2, 'y', 4)
|
|
|
|
>>> multiply(a, b)
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
NotImplementedError: Can't multiply MOstr and Monomial if they don'thave same variable (got x and y)
|
|
|
|
"""
|
|
|
|
if left.variable != right.variable:
|
2019-05-14 04:55:56 +00:00
|
|
|
raise NotImplementedError(
|
|
|
|
"Can't multiply MOstr and Monomial if they don't"
|
|
|
|
f"have same variable (got {left.variable} and {right.variable})"
|
|
|
|
)
|
|
|
|
return MOMonomial(right.coefficient, right.variable, right.power.value + 1)
|
|
|
|
|
2018-11-23 10:24:33 +00:00
|
|
|
|
|
|
|
@multiply.register(MOMonomial, MOstr)
|
|
|
|
@special_case(multiply_filter)
|
|
|
|
def momonomial_mostr(left, right):
|
|
|
|
""" Multiply a MOMonomial and a MOstr
|
|
|
|
|
|
|
|
>>> a = MOMonomial(2, 'x', 4)
|
|
|
|
>>> b = MOstr('x')
|
|
|
|
>>> print(multiply(a, b))
|
2018-12-21 11:20:13 +00:00
|
|
|
2x^5
|
2018-11-23 10:24:33 +00:00
|
|
|
>>> a = MOMonomial(2, 'y', 4)
|
|
|
|
>>> b = MOstr('x')
|
|
|
|
>>> multiply(a, b)
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
NotImplementedError: Can't multiply MOstr and Monomial if they don'thave same variable (got y and x)
|
|
|
|
|
|
|
|
"""
|
|
|
|
if left.variable != right.variable:
|
2019-05-14 04:55:56 +00:00
|
|
|
raise NotImplementedError(
|
|
|
|
"Can't multiply MOstr and Monomial if they don't"
|
|
|
|
f"have same variable (got {left.variable} and {right.variable})"
|
|
|
|
)
|
|
|
|
return MOMonomial(left.coefficient, left.variable, left.power.value + 1)
|
|
|
|
|
2018-11-23 10:24:33 +00:00
|
|
|
|
|
|
|
@multiply.register(MOMonomial, MOMonomial)
|
|
|
|
@special_case(multiply_filter)
|
|
|
|
def momonomial_momonomial(left, right):
|
|
|
|
""" Multiply a MOMonomial and a MOMonomial
|
|
|
|
|
|
|
|
>>> a = MOMonomial(2, 'x', 4)
|
|
|
|
>>> b = MOMonomial(3, 'x', 2)
|
|
|
|
>>> print(multiply(a, b))
|
|
|
|
*
|
|
|
|
> *
|
|
|
|
| > 2
|
|
|
|
| > 3
|
|
|
|
> ^
|
|
|
|
| > x
|
|
|
|
| > +
|
|
|
|
| | > 4
|
|
|
|
| | > 2
|
|
|
|
>>> a = MOMonomial(2, 'y', 4)
|
|
|
|
>>> b = MOMonomial(3, 'x', 2)
|
|
|
|
>>> multiply(a, b)
|
|
|
|
Traceback (most recent call last):
|
|
|
|
...
|
|
|
|
NotImplementedError: Can't multiply MOMonomial and Monomial if they don'thave same variable (got y and x)
|
|
|
|
|
|
|
|
"""
|
|
|
|
if left.variable != right.variable:
|
2019-05-14 04:55:56 +00:00
|
|
|
raise NotImplementedError(
|
|
|
|
"Can't multiply MOMonomial and Monomial if they don't"
|
|
|
|
f"have same variable (got {left.variable} and {right.variable})"
|
|
|
|
)
|
2018-11-23 10:24:33 +00:00
|
|
|
powers = Tree("+", left.power, right.power)
|
|
|
|
monome = Tree("^", left.variable, powers)
|
|
|
|
coefs = Tree("*", left.coefficient, right.coefficient)
|
|
|
|
return Tree("*", coefs, monome)
|
|
|
|
|
2019-05-14 04:55:56 +00:00
|
|
|
|
|
|
|
@multiply.register((MOnumber, MOFraction, MOstr, MOstrPower, MOMonomial), MOpolynomial)
|
2018-11-23 10:53:37 +00:00
|
|
|
@special_case(multiply_filter)
|
2018-11-23 10:59:07 +00:00
|
|
|
def lotsmo_mopolynomial(left, right):
|
2018-11-23 10:53:37 +00:00
|
|
|
""" Multiply a scalar and a MOMonomial
|
|
|
|
|
|
|
|
>>> a = MOnumber(2)
|
|
|
|
>>> b = MOpolynomial('x', [1, 2, 3])
|
|
|
|
>>> print(multiply(a, b))
|
|
|
|
+
|
|
|
|
> *
|
|
|
|
| > 2
|
2018-12-21 11:20:13 +00:00
|
|
|
| > 3x^2
|
2018-11-23 10:53:37 +00:00
|
|
|
> +
|
|
|
|
| > *
|
|
|
|
| | > 2
|
2018-12-21 11:20:13 +00:00
|
|
|
| | > 2x
|
2018-11-23 10:53:37 +00:00
|
|
|
| > *
|
|
|
|
| | > 2
|
2018-11-23 11:15:12 +00:00
|
|
|
| | > 1
|
|
|
|
|
2018-11-23 10:53:37 +00:00
|
|
|
>>> a = MOFraction(1, 5)
|
|
|
|
>>> b = MOpolynomial('x', [1, 2, 3])
|
|
|
|
>>> print(multiply(a, b))
|
|
|
|
+
|
|
|
|
> *
|
2018-12-21 11:20:13 +00:00
|
|
|
| > 1 / 5
|
|
|
|
| > 3x^2
|
2018-11-23 10:53:37 +00:00
|
|
|
> +
|
|
|
|
| > *
|
2018-12-21 11:20:13 +00:00
|
|
|
| | > 1 / 5
|
|
|
|
| | > 2x
|
2018-11-23 10:53:37 +00:00
|
|
|
| > *
|
2018-12-21 11:20:13 +00:00
|
|
|
| | > 1 / 5
|
2018-11-23 11:15:12 +00:00
|
|
|
| | > 1
|
|
|
|
|
2018-12-21 11:20:13 +00:00
|
|
|
|
2018-11-23 10:53:37 +00:00
|
|
|
>>> a = MOstr("x")
|
|
|
|
>>> b = MOpolynomial('x', [1, 2, 3])
|
|
|
|
>>> print(multiply(a, b))
|
|
|
|
+
|
|
|
|
> *
|
|
|
|
| > x
|
2018-12-21 11:20:13 +00:00
|
|
|
| > 3x^2
|
2018-11-23 10:53:37 +00:00
|
|
|
> +
|
|
|
|
| > *
|
|
|
|
| | > x
|
2018-12-21 11:20:13 +00:00
|
|
|
| | > 2x
|
2018-11-23 10:53:37 +00:00
|
|
|
| > *
|
|
|
|
| | > x
|
2018-11-23 11:15:12 +00:00
|
|
|
| | > 1
|
2018-12-21 11:20:13 +00:00
|
|
|
|
2018-11-23 10:53:37 +00:00
|
|
|
>>> a = MOstrPower("x", 2)
|
|
|
|
>>> b = MOpolynomial('x', [1, 2, 3])
|
|
|
|
>>> print(multiply(a, b))
|
|
|
|
+
|
|
|
|
> *
|
2018-12-21 11:20:13 +00:00
|
|
|
| > x^2
|
|
|
|
| > 3x^2
|
2018-11-23 10:53:37 +00:00
|
|
|
> +
|
|
|
|
| > *
|
2018-12-21 11:20:13 +00:00
|
|
|
| | > x^2
|
|
|
|
| | > 2x
|
2018-11-23 10:53:37 +00:00
|
|
|
| > *
|
2018-12-21 11:20:13 +00:00
|
|
|
| | > x^2
|
2018-11-23 11:15:12 +00:00
|
|
|
| | > 1
|
|
|
|
|
2018-11-23 10:53:37 +00:00
|
|
|
>>> a = MOMonomial(3, "x", 2)
|
|
|
|
>>> b = MOpolynomial('x', [1, 2, 3])
|
|
|
|
>>> print(multiply(a, b))
|
|
|
|
+
|
|
|
|
> *
|
2018-12-21 11:20:13 +00:00
|
|
|
| > 3x^2
|
|
|
|
| > 3x^2
|
2018-11-23 10:53:37 +00:00
|
|
|
> +
|
|
|
|
| > *
|
2018-12-21 11:20:13 +00:00
|
|
|
| | > 3x^2
|
|
|
|
| | > 2x
|
2018-11-23 10:53:37 +00:00
|
|
|
| > *
|
2018-12-21 11:20:13 +00:00
|
|
|
| | > 3x^2
|
2018-11-23 11:15:12 +00:00
|
|
|
| | > 1
|
|
|
|
|
|
|
|
|
|
|
|
"""
|
2019-05-14 04:55:56 +00:00
|
|
|
coefs = [Tree("*", left, monom) for monom in list(right.monomials.values())[::-1]]
|
2018-11-23 11:15:12 +00:00
|
|
|
return Tree.from_list("+", coefs)
|
|
|
|
|
2019-05-14 04:55:56 +00:00
|
|
|
|
|
|
|
@multiply.register(MOpolynomial, (MOnumber, MOFraction, MOstr, MOstrPower, MOMonomial))
|
2018-11-23 11:15:12 +00:00
|
|
|
@special_case(multiply_filter)
|
|
|
|
def mopolynomial_lotsmo(left, right):
|
|
|
|
""" Multiply a MOpolynomial with nearly everything
|
|
|
|
|
|
|
|
>>> a = MOpolynomial('x', [1, 2, 3])
|
|
|
|
>>> b = MOnumber(2)
|
|
|
|
>>> print(multiply(a, b))
|
|
|
|
+
|
|
|
|
> *
|
2018-12-21 11:20:13 +00:00
|
|
|
| > 3x^2
|
2018-11-23 11:15:12 +00:00
|
|
|
| > 2
|
|
|
|
> +
|
|
|
|
| > *
|
2018-12-21 11:20:13 +00:00
|
|
|
| | > 2x
|
2018-11-23 11:15:12 +00:00
|
|
|
| | > 2
|
|
|
|
| > *
|
|
|
|
| | > 1
|
|
|
|
| | > 2
|
|
|
|
|
|
|
|
>>> a = MOpolynomial('x', [1, 2, 3])
|
|
|
|
>>> b = MOFraction(1, 5)
|
|
|
|
>>> print(multiply(a, b))
|
|
|
|
+
|
|
|
|
> *
|
2018-12-21 11:20:13 +00:00
|
|
|
| > 3x^2
|
|
|
|
| > 1 / 5
|
2018-11-23 11:15:12 +00:00
|
|
|
> +
|
|
|
|
| > *
|
2018-12-21 11:20:13 +00:00
|
|
|
| | > 2x
|
|
|
|
| | > 1 / 5
|
2018-11-23 11:15:12 +00:00
|
|
|
| > *
|
|
|
|
| | > 1
|
2018-12-21 11:20:13 +00:00
|
|
|
| | > 1 / 5
|
|
|
|
|
2018-11-23 11:15:12 +00:00
|
|
|
|
|
|
|
>>> a = MOpolynomial('x', [1, 2, 3])
|
|
|
|
>>> b = MOstr("x")
|
|
|
|
>>> print(multiply(a, b))
|
|
|
|
+
|
|
|
|
> *
|
2018-12-21 11:20:13 +00:00
|
|
|
| > 3x^2
|
2018-11-23 11:15:12 +00:00
|
|
|
| > x
|
|
|
|
> +
|
|
|
|
| > *
|
2018-12-21 11:20:13 +00:00
|
|
|
| | > 2x
|
2018-11-23 11:15:12 +00:00
|
|
|
| | > x
|
|
|
|
| > *
|
|
|
|
| | > 1
|
|
|
|
| | > x
|
|
|
|
|
|
|
|
>>> a = MOpolynomial('x', [1, 2, 3])
|
|
|
|
>>> b = MOstrPower("x", 2)
|
|
|
|
>>> print(multiply(a, b))
|
|
|
|
+
|
|
|
|
> *
|
2018-12-21 11:20:13 +00:00
|
|
|
| > 3x^2
|
|
|
|
| > x^2
|
2018-11-23 11:15:12 +00:00
|
|
|
> +
|
|
|
|
| > *
|
2018-12-21 11:20:13 +00:00
|
|
|
| | > 2x
|
|
|
|
| | > x^2
|
2018-11-23 11:15:12 +00:00
|
|
|
| > *
|
|
|
|
| | > 1
|
2018-12-21 11:20:13 +00:00
|
|
|
| | > x^2
|
|
|
|
|
2018-11-23 11:15:12 +00:00
|
|
|
|
|
|
|
>>> a = MOpolynomial('x', [1, 2, 3])
|
|
|
|
>>> b = MOMonomial(3, "x", 2)
|
|
|
|
>>> print(multiply(a, b))
|
|
|
|
+
|
|
|
|
> *
|
2018-12-21 11:20:13 +00:00
|
|
|
| > 3x^2
|
|
|
|
| > 3x^2
|
2018-11-23 11:15:12 +00:00
|
|
|
> +
|
|
|
|
| > *
|
2018-12-21 11:20:13 +00:00
|
|
|
| | > 2x
|
|
|
|
| | > 3x^2
|
2018-11-23 11:15:12 +00:00
|
|
|
| > *
|
|
|
|
| | > 1
|
2018-12-21 11:20:13 +00:00
|
|
|
| | > 3x^2
|
2018-11-23 11:15:12 +00:00
|
|
|
|
2018-11-23 10:53:37 +00:00
|
|
|
"""
|
2019-05-14 04:55:56 +00:00
|
|
|
coefs = [Tree("*", monom, right) for monom in list(left.monomials.values())[::-1]]
|
2018-11-23 10:53:37 +00:00
|
|
|
return Tree.from_list("+", coefs)
|
|
|
|
|
2019-05-14 04:55:56 +00:00
|
|
|
|
2018-11-23 10:59:07 +00:00
|
|
|
@multiply.register(MOpolynomial, MOpolynomial)
|
|
|
|
@special_case(multiply_filter)
|
|
|
|
def mopolynomial_mopolynomial(left, right):
|
|
|
|
""" Multiply 2 MOpolynomial
|
|
|
|
|
|
|
|
>>> a = MOpolynomial('x', [1, 2, 3])
|
|
|
|
>>> b = MOpolynomial('x', [4, 5])
|
|
|
|
>>> print(multiply(a, b))
|
|
|
|
+
|
|
|
|
> +
|
|
|
|
| > *
|
2018-12-21 11:20:13 +00:00
|
|
|
| | > 3x^2
|
|
|
|
| | > 5x
|
2018-11-23 10:59:07 +00:00
|
|
|
| > +
|
|
|
|
| | > *
|
2018-12-21 11:20:13 +00:00
|
|
|
| | | > 3x^2
|
2018-11-23 10:59:07 +00:00
|
|
|
| | | > 4
|
|
|
|
| | > *
|
2018-12-21 11:20:13 +00:00
|
|
|
| | | > 2x
|
|
|
|
| | | > 5x
|
2018-11-23 11:15:12 +00:00
|
|
|
> +
|
|
|
|
| > *
|
2018-12-21 11:20:13 +00:00
|
|
|
| | > 2x
|
2018-11-23 11:15:12 +00:00
|
|
|
| | > 4
|
|
|
|
| > +
|
|
|
|
| | > *
|
|
|
|
| | | > 1
|
2018-12-21 11:20:13 +00:00
|
|
|
| | | > 5x
|
2018-11-23 11:15:12 +00:00
|
|
|
| | > *
|
|
|
|
| | | > 1
|
|
|
|
| | | > 4
|
2018-11-23 10:59:07 +00:00
|
|
|
|
|
|
|
"""
|
2019-05-14 04:55:56 +00:00
|
|
|
coefs = [
|
|
|
|
Tree("*", l_monom, r_monom)
|
|
|
|
for l_monom in list(left.monomials.values())[::-1]
|
|
|
|
for r_monom in list(right.monomials.values())[::-1]
|
|
|
|
]
|
2018-11-23 10:59:07 +00:00
|
|
|
return Tree.from_list("+", coefs)
|
|
|
|
|
2018-11-23 10:53:37 +00:00
|
|
|
|
2018-03-11 17:05:17 +00:00
|
|
|
# -----------------------------
|
|
|
|
# Reglages pour 'vim'
|
|
|
|
# vim:set autoindent expandtab tabstop=4 shiftwidth=4:
|
|
|
|
# cursor: 16 del
|