[back] [prev] [next] [index] [root]

 


QpExp

Computes the exponent function of an element in Q_p.

Syntax:

exp:= QpExp(k);

p-adic element
  k  
p-adic element
  exp  

See also:  IsQp, Qp, QpElt, QpEltToQ, QpEltQp, QpLog, QpPrec, QpPrime, QpSqrt, QpValuation

Description:

The exponent function exp of the element k of a p-adic field is returned. If prec is the used precision, the result is correct modulo p^{prec}.


Example:


kash> F := Qp(3);
3-adic Field mod 3^20
kash> k := QpElt(F, 18);
2*3^2
kash> exp := QpExp(k);
> 1 + 2*3^2 + 2*3^4 + 3^5 + 3^6 + 2*3^7 + 2*3^9 + 3^10 + 3^11 + 2*3^13 + 3^17 + \
2*3^18 + 2*3^19 + O(3^20)


<- back[back] [prev] [next] [index] [root]