Beispiel #1
0
 def _eval_as_leading_term(self, x):
     if not self.exp.has(x):
         return Pow(self.base.as_leading_term(x), self.exp)
     return C.exp(self.exp * C.log(self.base)).as_leading_term(x)
Beispiel #2
0
 def _eval_power(self, exp):
     return C.exp(exp)
Beispiel #3
0
 def _eval_as_leading_term(self, x):
     if not self.exp.has(x):
         return Pow(self.base.as_leading_term(x), self.exp)
     return C.exp(self.exp * C.log(self.base)).as_leading_term(x)
Beispiel #4
0
 def _eval_power(self, exp):
     return C.exp(exp)