  
  [1m[4m[31m2. Residue Class-Wise Affine Mappings[0m
  
  This  chapter  gives  the  basic definitions, describes how to enter residue
  class-wise  affine  mappings and how to compute with them. The functionality
  of  this  package  which is dedicated to residue class-wise affine groups is
  described  in  detail  in the next chapter. The reader is encouraged to look
  there  already after having read the first few pages of this chapter, and to
  look up definitions as he needs to.
  
  
  [1m[4m[31m2.1 Basic definitions[0m
  
  Residue  class-wise affine groups, or for short [22m[36mrcwa[0m groups, are permutation
  groups whose elements are bijective residue class-wise affine mappings.
  
  A  mapping  f:  Z  -> Z is called [22m[36mresidue class-wise affine[0m, or for short an
  [22m[36mrcwa[0m  mapping,  if  there is a positive integerm such that the restrictions
  off to the residue classes r(m) in Z/mZ are all affine, i.e. givenby
  
  
                                          a_r(m) * n + b_r(m)
             f|_r(m):  r(m) -> Z,  n |->  -------------------
                                                c_r(m)
  
  
  for  certain coefficients a_r(m), b_r(m), c_r(m) in Z. The smallest possible
  m  is  called  the  [22m[36mmodulus[0m  off.  It  is understood that all fractions are
  reduced,  i.e.  that gcd( a_r(m), b_r(m), c_r(m) ) = 1, and that c_r(m) > 0.
  The  lcm  of  the coefficients a_r(m) is called the [22m[36mmultiplier[0m off, and the
  lcm of the coefficients c_r(m) is called the [22m[36mdivisor[0m off.
  
  It  is easy to see that the residue class-wise affine mappings form a monoid
  under  composition, and that the residue class-wise affine permutations form
  a countable subgroup of Sym(Z). We denote the latter group by RCWA(Z).
  
  An  rcwa  mapping  is  called  [22m[36mtame[0m  if  the  set of moduli of its powers is
  bounded,  or equivalently if it permutes a partition ofZ into finitely many
  residue  classes  on all of which it is affine. An rcwa group is called [22m[36mtame[0m
  if there is a common such partition for all of its elements, or equivalently
  if  the  set of moduli of its elements is bounded. Rcwa mappings and -groups
  which  are  not  tame  are  called  [22m[36mwild[0m. Tame rcwa mappings and -groups are
  something  which  one  could  call  the  "trivial  cases" or "basic building
  blocks", while wild rcwa groups are the objects of primary interest.
  
  The  definitions  of  residue  class-wise affine mappings and -groups can be
  generalized  in an obvious way to suitable rings other thanZ. In fact, this
  package  provides at least rudimentary support for residue class-wise affine
  groups over semilocalizations ofZ and over univariate polynomial rings over
  finite fields.
  
  
  [1m[4m[31m2.2 Entering residue class-wise affine mappings[0m
  
  Entering  an  rcwa  mapping ofZ into [1mRCWA[0m requires specifying the modulusm
  and  the  coefficients  a_r(m),  b_r(m) andc_r(m) for r(m) running over the
  residue classes (modm).
  
  This can be done easiest by [22m[32mRcwaMapping( [22m[34mcoeffs[0m )[0m, where [22m[34mcoeffs[0m is a list of
  m coefficient triples [22m[32mcoeffs[[0mr+1[22m[32m]= [[0ma_r(m), b_r(m), c_r(m)[22m[32m][0m, with r running
  from 0 tom-1.
  
  If  some  coefficient c_r(m) is zero or if images of some integers under the
  mapping to be defined would not be integers, an error message is printed and
  a  break loop is entered. For example, the coefficient triple [22m[32m[1,4,3][0m is not
  allowed  at the first position. The reason for this is that not all integers
  congruent to 1 * 0 + 4 = 4modm are divisible by3.
  
  For the general constructor for rcwa mappings, see [1m[34mRcwaMapping[0m ([1m2.2-5[0m).
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> T := RcwaMapping([[1,0,2],[3,1,2]]); # The Collatz mapping.[0m
    [22m[35m<rcwa mapping of Z with modulus 2>[0m
    [22m[35mgap> [ IsSurjective(T), IsInjective(T) ];[0m
    [22m[35m[ true, false ][0m
    [22m[35mgap> SetName(T,"T"); Display(T);[0m
    [22m[35m[0m
    [22m[35mSurjective rcwa mapping of Z with modulus 2[0m
    [22m[35m[0m
    [22m[35m                n mod 2                |                 n^T[0m
    [22m[35m---------------------------------------+--------------------------------------[0m
    [22m[35m  0                                    | n/2[0m
    [22m[35m  1                                    | (3n + 1)/2[0m
    [22m[35m[0m
    [22m[35mgap> a := RcwaMapping([[2,0,3],[4,-1,3],[4,1,3]]); SetName(a,"a");[0m
    [22m[35m<rcwa mapping of Z with modulus 3>[0m
    [22m[35mgap> IsBijective(a);[0m
    [22m[35mtrue[0m
    [22m[35mgap> Display(a); # This is Collatz' permutation:[0m
    [22m[35m[0m
    [22m[35mBijective rcwa mapping of Z with modulus 3[0m
    [22m[35m[0m
    [22m[35m                n mod 3                |                 n^a[0m
    [22m[35m---------------------------------------+--------------------------------------[0m
    [22m[35m  0                                    | 2n/3[0m
    [22m[35m  1                                    | (4n - 1)/3[0m
    [22m[35m  2                                    | (4n + 1)/3[0m
    [22m[35m[0m
    [22m[35mgap> Support(a);[0m
    [22m[35mZ \ [ -1, 0, 1 ][0m
    [22m[35mgap> Cycle(a,44);[0m
    [22m[35m[ 44, 59, 79, 105, 70, 93, 62, 83, 111, 74, 99, 66 ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  There  is  computational  evidence  for  the  conjecture  that  any  residue
  class-wise  affine  permutation  ofZ  can  be  factored into members of the
  following  three  series  of  rcwa mappings of particularly simple structure
  (cp. [1m[34mFactorizationIntoCSCRCT[0m ([1m2.4-1[0m)):
  
  [1m[4m[31m2.2-1 ClassShift[0m
  
  [1m[34m> ClassShift( [0m[22m[34mr, m[0m[1m[34m ) _______________________________________________[0mfunction
  [1m[34m> ClassShift( [0m[22m[34mResidueClass(r, m)[0m[1m[34m ) _________________________________[0mfunction
  [1mReturns:[0m  The class shift nu_r(m).
  
  The [22m[36mclass shift[0m nu_r(m) is the rcwa mapping ofZ which maps n in r(m) to n +
  m  and  which  fixes Z\ r(m) pointwise. Enclosing the argument list in list
  brackets is permitted.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> Display(ClassShift(5,12));    [0m
    [22m[35m[0m
    [22m[35mTame bijective rcwa mapping of Z with modulus 12, of order infinity[0m
    [22m[35m[0m
    [22m[35m               n mod 12                |          n^ClassShift(5,12)[0m
    [22m[35m---------------------------------------+--------------------------------------[0m
    [22m[35m   0  1  2  3  4  6  7  8  9 10 11     | n[0m
    [22m[35m   5                                   | n + 12[0m
    [22m[35m[0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  [1m[4m[31m2.2-2 ClassReflection[0m
  
  [1m[34m> ClassReflection( [0m[22m[34mr, m[0m[1m[34m ) __________________________________________[0mfunction
  [1m[34m> ClassReflection( [0m[22m[34mResidueClass(r, m)[0m[1m[34m ) ____________________________[0mfunction
  [1mReturns:[0m  The class reflection varsigma_r(m).
  
  The  [22m[36mclass reflection[0m varsigma_r(m) is the rcwa mapping ofZ which maps n in
  r(m)  to  -n + 2r and which fixes Z\r(m) pointwise. Enclosing the argument
  list in list brackets is permitted.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> Display(ClassReflection(5,9));[0m
    [22m[35m[0m
    [22m[35mBijective rcwa mapping of Z with modulus 9, of order 2[0m
    [22m[35m[0m
    [22m[35m                n mod 9                |        n^ClassReflection(5,9)[0m
    [22m[35m---------------------------------------+--------------------------------------[0m
    [22m[35m  0 1 2 3 4 6 7 8                      | n[0m
    [22m[35m  5                                    | -n + 10[0m
    [22m[35m[0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  [1m[4m[31m2.2-3 ClassTransposition[0m
  
  [1m[34m> ClassTransposition( [0m[22m[34mr1, m1, r2, m2[0m[1m[34m ) _____________________________[0mfunction
  [1m[34m> ClassTransposition( [0m[22m[34mResidueClass(r1, m1), ResidueClass(r2, m2)[0m[1m[34m ) _[0mfunction
  [1mReturns:[0m  The class transposition tau_r_1(m_1),r_2(m_2).
  
  Given  two  disjoint  residue classes r_1(m_1) and r_2(m_2) of the integers,
  the [22m[36mclass transposition[0m tau_r_1(m_1),r_2(m_2) in RCWA(Z) is defined by
  
  
                /
               | (m_2 n + m_1 r_2 - m_2 r_1)/m_1 if n in r_1(m_1),
        n |-> <  (m_1 n + m_2 r_1 - m_1 r_2)/m_2 if n in r_2(m_2),
               | otherwise,
                \
      
  
  where  it  is  understood  that  0 <= r_1 < m_1 and that 0 <= r_2 < m_2. The
  class   transposition   tau_r_1(m_1),r_2(m_2)   is   an   involution   which
  interchanges  the  residue classes r_1(m_1) and r_2(m_2) and which fixes the
  complement of their union pointwise.
  
  Enclosing  the  argument  list  in  list  brackets is permitted. The residue
  classes r_1(m_1) and r_2(m_2) are stored as an attribute [22m[32mTransposedClasses[0m.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> Display(ClassTransposition(1,2,8,10));[0m
    [22m[35m[0m
    [22m[35mBijective rcwa mapping of Z with modulus 10, of order 2[0m
    [22m[35m[0m
    [22m[35m               n mod 10                |    n^ClassTransposition(1,2,8,10)[0m
    [22m[35m---------------------------------------+--------------------------------------[0m
    [22m[35m   0  2  4  6                          | n[0m
    [22m[35m   1  3  5  7  9                       | 5n + 3[0m
    [22m[35m   8                                   | (n - 3)/5[0m
    [22m[35m[0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  The  set of all class transpositions generates the simple group mentioned in
  the preface.
  
  The  permutations  of the following kind play an important role in factoring
  bijective  rcwa  mappings  into  class  shifts,  class reflections and class
  transpositions (cp. [1m[34mFactorizationIntoCSCRCT[0m ([1m2.4-1[0m)):
  
  [1m[4m[31m2.2-4 PrimeSwitch[0m
  
  [1m[34m> PrimeSwitch( [0m[22m[34mp[0m[1m[34m ) _________________________________________________[0mfunction
  [1m[34m> PrimeSwitch( [0m[22m[34mp, k[0m[1m[34m ) ______________________________________________[0mfunction
  [1mReturns:[0m  In   the   one-argument   form   the   [22m[36mprime   switch[0m  sigma_p  :=
            tau_0(8),1(2p)    *    tau_4(8),-1(2p)    *    tau_0(4),1(2p)    *
            tau_2(4),-1(2p) * tau_2(2p),1(4p) * tau_4(2p),2p+1(4p), and in the
            two-argument form the restriction of sigma_p by n -> kn.
  
  For  an odd prime p, the [22m[36mprime switch[0m sigma_p is a bijective rcwa mapping of
  Z with modulus4p, multiplierp and divisor2.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> Factorization(PrimeSwitch(3));[0m
    [22m[35m[ ClassTransposition(1,6,0,8), ClassTransposition(5,6,4,8), [0m
    [22m[35m  ClassTransposition(0,4,1,6), ClassTransposition(2,4,5,6), [0m
    [22m[35m  ClassTransposition(2,6,1,12), ClassTransposition(4,6,7,12) ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  There  are  properties [22m[32mIsClassShift[0m, [22m[32mIsClassReflection[0m, [22m[32mIsClassTransposition[0m
  and [22m[32mIsPrimeSwitch[0m which indicate whether a given rcwa mapping belongs to the
  corresponding series.
  
  In  the  sequel,  a  description of the general-purpose constructor for rcwa
  mappings  is  given.  This might look a bit technical on a first glance, but
  knowing  all  possible  ways  of  entering  an  rcwa  mapping is by no means
  necessary for understanding this manual or for using this package.
  
  [1m[4m[31m2.2-5 RcwaMapping[0m
  
  [1m[34m> RcwaMapping( [0m[22m[34mR, m, coeffs[0m[1m[34m ) ________________________________________[0mmethod
  [1m[34m> RcwaMapping( [0m[22m[34mR, coeffs[0m[1m[34m ) ___________________________________________[0mmethod
  [1m[34m> RcwaMapping( [0m[22m[34mcoeffs[0m[1m[34m ) ______________________________________________[0mmethod
  [1m[34m> RcwaMapping( [0m[22m[34mperm, range[0m[1m[34m ) _________________________________________[0mmethod
  [1m[34m> RcwaMapping( [0m[22m[34mm, values[0m[1m[34m ) ___________________________________________[0mmethod
  [1m[34m> RcwaMapping( [0m[22m[34mpi, coeffs[0m[1m[34m ) __________________________________________[0mmethod
  [1m[34m> RcwaMapping( [0m[22m[34mq, m, coeffs[0m[1m[34m ) ________________________________________[0mmethod
  [1m[34m> RcwaMapping( [0m[22m[34mP1, P2[0m[1m[34m ) ______________________________________________[0mmethod
  [1m[34m> RcwaMapping( [0m[22m[34mcycles[0m[1m[34m ) ______________________________________________[0mmethod
  [1mReturns:[0m  An rcwa mapping.
  
  In  all  cases  the  argument[22m[34mR[0m is the underlying ring, [22m[34mm[0m is the modulus and
  [22m[34mcoeffs[0m  is the coefficient list. A coefficient list for an rcwa mapping with
  modulus  m  consists of |R/mR| coefficient triples [22m[32m[[0ma_r(m), b_r(m), c_r(m)[22m[32m][0m.
  Their  ordering  is determined by the ordering of the representatives of the
  residue classes (modm) in the sorted list returned by [22m[32mAllResidues([22m[34mR[0m, [22m[34mm[0m)[0m. In
  case R = Z this means that the coefficient triple for the residue class 0(m)
  comes first and is followed by the one for 1(m), the one for 2(m) and so on.
  In  case  one  or  several  of  the arguments [22m[34mR[0m, [22m[34mm[0m and [22m[34mcoeffs[0m are omitted or
  replaced  by  other arguments, the former are either derived from the latter
  or  default  values are taken. The meaning of the other arguments is defined
  in  the  detailed description of the particular methods given in the sequel.
  The above methods return the rcwa mapping
  
  [1m[33m(a)[0m
        of [22m[34mR[0m with modulus [22m[34mmodulus[0m and coefficients [22m[34mcoeffs[0m, resp.
  
  [1m[33m(b)[0m
        of  [22m[34mR[0m  =  Z or [22m[34mR[0m = Z_(pi) with modulus [22m[32mLength([22m[34mcoeffs[0m)[0m and coefficients
        [22m[34mcoeffs[0m, resp.
  
  [1m[33m(c)[0m
        of [22m[34mR[0m = Z with modulus [22m[32mLength([22m[34mcoeffs[0m)[0m and coefficients [22m[34mcoeffs[0m, resp.
  
  [1m[33m(d)[0m
        of [22m[34mR[0m = Z, acting on any set [22m[32m[22m[34mrange[0m+k*Length([22m[34mrange[0m)[0m like the permutation
        [22m[34mperm[0m on [22m[34mrange[0m, resp.
  
  [1m[33m(e)[0m
        of  [22m[34mR[0m  = Z with modulus [22m[34mmodulus[0m and values prescribed by the list [22m[34mval[0m,
        which  consists  of  2*[22m[34mmodulus[0m  pairs  giving preimage and image for 2
        points per residue class (mod [22m[34mmodulus[0m), resp.
  
  [1m[33m(f)[0m
        of [22m[34mR[0m = Z_(pi) with modulus [22m[32mLength([22m[34mcoeffs[0m)[0m and coefficients [22m[34mcoeffs[0m (the
        set  of  primes  pi denoting the underlying ring is passed as argument
        [22m[34mpi[0m), resp.
  
  [1m[33m(g)[0m
        of [22m[34mR[0m = GF([22m[34mq[0m)[[22m[34mx[0m] with modulus [22m[34mmodulus[0m and coefficients [22m[34mcoeffs[0m, resp.
  
  [1m[33m(h)[0m
        a  bijective  rcwa  mapping  which  induces  a  bijection  between the
        partitions  [22m[34mP1[0m and [22m[34mP2[0m of[22m[34mR[0m into residue classes and which is affine on
        the elements of [22m[34mP1[0m, resp.
  
  [1m[33m(i)[0m
        a  bijective  rcwa  mapping  with  "residue  class cycles" as given by
        [22m[34mcycles[0m.  The  latter  is  a list of lists of pairwise disjoint residue
        classes which the mapping should permute cyclically, each.
  
  The  methods  for  the  operation  [22m[32mRcwaMapping[0m  perform a number of argument
  checks, which can be skipped by using [22m[32mRcwaMappingNC[0m instead.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> x := Indeterminate(GF(2),1);; SetName(x,"x");[0m
    [22m[35mgap> R := PolynomialRing(GF(2),1);[0m
    [22m[35mGF(2)[x][0m
    [22m[35mgap> RcwaMapping(R,x+1,[[1,0,x+One(R)],[x+One(R),0,1]]*One(R));      # (a)[0m
    [22m[35m<rcwa mapping of GF(2)[x] with modulus x+Z(2)^0>[0m
    [22m[35mgap> RcwaMapping(Z_pi(2),[[1/3,0,1]]);                               # (b)[0m
    [22m[35mRcwa mapping of Z_( 2 ): n -> 1/3 n[0m
    [22m[35mgap> a := RcwaMapping([[2,0,3],[4,-1,3],[4,1,3]]);                   # (c)[0m
    [22m[35m<rcwa mapping of Z with modulus 3>[0m
    [22m[35mgap> RcwaMapping((1,2,3),[1..4]);                                    # (d)[0m
    [22m[35m<bijective rcwa mapping of Z with modulus 4, of order 3>[0m
    [22m[35mgap> T = RcwaMapping(2,[[1,2],[2,1],[3,5],[4,2]]);                   # (e)[0m
    [22m[35mtrue[0m
    [22m[35mgap> RcwaMapping([2],[[1/3,0,1]]);                                   # (f)[0m
    [22m[35mRcwa mapping of Z_( 2 ): n -> 1/3 n[0m
    [22m[35mgap> RcwaMapping(2,x+1,[[1,0,x+One(R)],[x+One(R),0,1]]*One(R));      # (g)[0m
    [22m[35m<rcwa mapping of GF(2)[x] with modulus x+Z(2)^0>[0m
    [22m[35mgap> a = RcwaMapping(List([[0,3],[1,3],[2,3]],ResidueClass),[0m
    [22m[35m>                    List([[0,2],[1,4],[3,4]],ResidueClass));        # (h)[0m
    [22m[35mtrue[0m
    [22m[35mgap> RcwaMapping([List([[0,2],[1,4],[3,8],[7,16]],ResidueClass)]);   # (i)[0m
    [22m[35m<bijective rcwa mapping of Z with modulus 16, of order 4>[0m
    [22m[35mgap> Cycle(last,ResidueClass(0,2));[0m
    [22m[35m[ 0(2), 1(4), 3(8), 7(16) ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  In  most  cases  the  output  of  the  [22m[32mView[0m method does not describe an rcwa
  mapping completely. In these cases the output is enclosed in brackets. There
  are   methods   installed   for  [22m[32mDisplay[0m,  [22m[32mPrint[0m  and  [22m[32mString[0m.  The  [22m[32mPrint[0med
  representation  of  an  rcwa  mapping  is  [1mGAP[0m - readable if and only if the
  [22m[32mPrint[0med  representation  of the elements of the underlying ring is so. There
  is also a method for [22m[32mLaTeX[0m:
  
  [1m[4m[31m2.2-6 LaTeXObj[0m
  
  [1m[34m> LaTeXObj( [0m[22m[34mf[0m[1m[34m ) ______________________________________________________[0mmethod
  [1m[34m> LaTeX( [0m[22m[34mf[0m[1m[34m ) _________________________________________________________[0mmethod
  [1mReturns:[0m  A LaTeX representation of the rcwa mapping[22m[34mf[0m.
  
  The  output  makes  use  of  the  LaTeX macro package [1mamsmath[0m. If the option
  [22m[34mFactorization[0m  is  set,  a  factorization  of  [22m[34mf[0m  into  class  shifts, class
  reflections,  class  transpositions  and  prime  switches  is  printed  (cp.
  [1m[34mFactorizationIntoCSCRCT[0m  ([1m2.4-1[0m)).  For  rcwa  mappings with modulus greater
  than1, an indentation by [22m[34mIndentation[0m characters can be specified by setting
  this option value accordingly.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> Print(LaTeXObj(T));[0m
    [22m[35mn \ \longmapsto \[0m
    [22m[35m\begin{cases}[0m
    [22m[35m  \frac{n}{2}      & \text{if} \ n \in 0(2), \\[0m
    [22m[35m  \frac{3n + 1}{2} & \text{if} \ n \in 1(2).[0m
    [22m[35m\end{cases}[0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> Print(LaTeXObj(Comm(a,ClassShift(0,4)):Factorization));[0m
    [22m[35m      &\nu_{4(8)} \cdot \nu_{0(8)}^{-1}[0m
    [22m[35m \cdot \tau_{0(8),4(8)} \cdot \tau_{5(16),11(16)}[0m
    [22m[35m \cdot \tau_{4(8),11(16)}[0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  There is an operation [22m[32mLaTeXAndXDVI[0m which displays an rcwa mapping in an [1mxdvi[0m
  window.  This works as follows: The string returned by the [22m[32mLaTeXObj[0m - method
  described  above  is  inserted  into  a  LaTeX  template  file. This file is
  LaTeX'ed,  and  the  result  is shown with [1mxdvi[0m. Calling [22m[32mDisplay[0m with option
  [22m[34mxdvi[0m  has  the  same effect. The operation [22m[32mLaTeXAndXDVI[0m is only available on
  UNIX systems, and requires suitable installations of LaTeX and [1mxdvi[0m.
  
  
  [1m[4m[31m2.3 Basic functionality for rcwa mappings[0m
  
  Checking  whether two rcwa mappings are equal is cheap. Rcwa mappings can be
  multiplied,  thus  there is a method for [22m[32m*[0m. Bijective rcwa mappings can also
  be  inverted,  thus  there  is  a  method  for [22m[32mInverse[0m. The latter method is
  usually  accessed by raising a mapping to some power with negative exponent.
  Multiplying,  inverting and computing powers of tame rcwa mappings is cheap.
  Computing powers of wild mappings is usually expensive -- runtime and memory
  requirements  normally  grow  approximately exponentially with the exponent.
  How expensive multiplying a couple of wild mappings is, varies very much. In
  any  case,  the  amount  of  memory  required for storing an rcwa mapping is
  proportional  to its modulus. Whether a given mapping is tame or wild can be
  determined  by  the operation [22m[32mIsTame[0m. There are methods for [22m[32mOrder[0m, which can
  not only compute a finite order, but can also detect infinite order.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> T := RcwaMapping([[1,0,2],[3,1,2]]);;          # The Collatz mapping.[0m
    [22m[35mgap> a := RcwaMapping([[2,0,3],[4,-1,3],[4,1,3]]);; # Collatz' permutation.[0m
    [22m[35mgap> List([-4..4],k->Modulus(a^k));[0m
    [22m[35m[ 256, 64, 16, 4, 1, 3, 9, 27, 81 ][0m
    [22m[35mgap> IsTame(T) or IsTame(a);[0m
    [22m[35mfalse[0m
    [22m[35mgap> IsTame(ClassShift(0,1)) and IsTame(ClassTransposition(0,2,1,2));[0m
    [22m[35mtrue[0m
    [22m[35mgap> T^2*a*T*a^-3;[0m
    [22m[35m<rcwa mapping of Z with modulus 768>[0m
    [22m[35mgap> (ClassShift(1,3)*ClassReflection(2,7))^1000000;[0m
    [22m[35m<bijective rcwa mapping of Z with modulus 21>[0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  There  are  methods installed for [22m[32mIsInjective[0m, [22m[32mIsSurjective[0m, [22m[32mIsBijective[0m and
  [22m[32mImage[0m.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> [ IsInjective(T), IsSurjective(T), IsBijective(a) ];[0m
    [22m[35m[ false, true, true ][0m
    [22m[35mgap> Image(RcwaMapping([[2,0,1]]));[0m
    [22m[35m0(2)[0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  Images  of  elements,  of  finite sets of elements and of unions of finitely
  many  residue  classes of the source of an rcwa mapping can be computed with
  [22m[32m^[0m,  the  same  symbol  as  used for exponentiation and conjugation. The same
  works for partitions of the source into a finite number of residue classes.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> 15^T;[0m
    [22m[35m23[0m
    [22m[35mgap> ResidueClass(1,2)^T;[0m
    [22m[35m2(3)[0m
    [22m[35mgap> List([[0,3],[1,3],[2,3]],ResidueClass)^a;[0m
    [22m[35m[ 0(2), 1(4), 3(4) ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  For  computing  preimages of elements under rcwa mappings, there are methods
  for  [22m[32mPreImageElm[0m  and  [22m[32mPreImagesElm[0m.  The  preimage  of a finite set of ring
  elements  or  of  a  union  of  finitely  many residue classes under an rcwa
  mapping can be computed using [22m[32mPreImage[0m.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> PreImagesElm(T,8);[0m
    [22m[35m[ 5, 16 ][0m
    [22m[35mgap> PreImage(T,ResidueClass(Integers,3,2));[0m
    [22m[35mZ \ 0(6) U 2(6)[0m
    [22m[35mgap> M := [1];; l := [1];;[0m
    [22m[35mgap> while Length(M) < 10000 do M := PreImage(T,M); Add(l,Length(M)); od; l;[0m
    [22m[35m[ 1, 1, 2, 2, 4, 5, 8, 10, 14, 18, 26, 36, 50, 67, 89, 117, 157, 208, 277, [0m
    [22m[35m  367, 488, 649, 869, 1154, 1534, 2039, 2721, 3629, 4843, 6458, 8608, 11472 ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  There  is  a method for the operation [22m[32mSupport[0m for computing the support of a
  bijective  rcwa mapping. A synonym for [22m[32mSupport[0m is [22m[32mMovedPoints[0m. There is also
  a  method  for  [22m[32mRestrictedPerm[0m  for computing the restriction of a bijective
  rcwa mapping to a union of residue classes which it fixes setwisely.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> List([a,a^2],Support);[0m
    [22m[35m[ Z \ [ -1, 0, 1 ], Z \ [ -3, -2, -1, 0, 1, 2, 3 ] ][0m
    [22m[35mgap> RestrictedPerm(ClassShift(0,2)*ClassReflection(1,2),ResidueClass(0,2));[0m
    [22m[35m<rcwa mapping of Z with modulus 2>[0m
    [22m[35mgap> last = ClassShift(0,2);[0m
    [22m[35mtrue[0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  Rcwa  mappings  can  be added and subtracted pointwise. However, please note
  that the set of rcwa mappings of a ring does not form a ring under [22m[32m+[0m and [22m[32m*[0m.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> b := ClassShift(0,3) * a;;[0m
    [22m[35mgap> [ Image((a + b)), Image((a - b)) ];[0m
    [22m[35m[ 2(4), [ -2, 0 ] ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  There   are  operations  [22m[32mModulus[0m  (abbreviated  [22m[32mMod[0m)  and  [22m[32mCoefficients[0m  for
  extracting  the  modulus resp. the coefficient list of a given rcwa mapping.
  The  meaning  of  the return values is as described in the previous section.
  General  documentation  for most operations mentioned in this section can be
  found  in the [1mGAP[0m reference manual. For rcwa mappings of rings other than Z,
  not for all operations applicable methods are available.
  
  
  [1m[4m[31m2.4 Factoring rcwa mappings[0m
  
  Factoring  group  elements into elements of some "nice" set of generators is
  often  helpful.  The  following  can be seen as an attempt towards getting a
  satisfactory solution of this problem for the group RCWA(Z):
  
  [1m[4m[31m2.4-1 FactorizationIntoCSCRCT[0m
  
  [1m[34m> FactorizationIntoCSCRCT( [0m[22m[34mg[0m[1m[34m ) ____________________________________[0mattribute
  [1m[34m> Factorization( [0m[22m[34mg[0m[1m[34m ) _________________________________________________[0mmethod
  [1mReturns:[0m  A factorization of the bijective rcwa mapping[22m[34mg[0m into class shifts,
            class  reflections  and class transpositions, provided that such a
            factorization exists and the method finds it.
  
  The  method  may  return  [22m[32mfail[0m,  stop  with  an error message or run into an
  infinite loop. If it returns a result, this result is always correct.
  
  By  default,  prime  switches  are  taken  as  one  factor.  If  the  option
  [22m[34mExpandPrimeSwitches[0m  is  set,  they  are  each  decomposed  into the 6 class
  transpositions  given  in  the  definition  (see  [1m[34mPrimeSwitch[0m  ([1m2.2-4[0m)).  By
  default,  the  factoring  process begins with splitting off factors from the
  right.  This  can  be  changed  by setting the option [22m[34mDirection[0m to [22m[32m"from the
  left"[0m.  By  default, a reasonably coarse respected partition of the integral
  mapping  occuring  in the final stage of the algorithm is computed. This can
  be  suppressed  by  setting  the  option [22m[34mShortenPartition[0m equal to [22m[32mfalse[0m. By
  default,  at  the  end  it  is checked whether the product of the determined
  factors  indeed equals [22m[34mg[0m. This check can be suppressed by setting the option
  [22m[34mNC[0m.
  
  The  problem  of  obtaining  a factorization as described is algorithmically
  difficult,  and  this  factorization  routine  is currently perhaps the most
  sophisticated  part  of  the [1mRCWA[0m package. Information about the progress of
  the  factorization  process can be obtained by setting the info level of the
  Info class [1m[34mInfoRCWA[0m ([1m6.3-1[0m) to2.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> Factorization(Comm(ClassShift(0,3)*ClassReflection(1,2),ClassShift(0,2)));[0m
    [22m[35m[ ClassReflection(2,3), ClassShift(2,6)^-1, ClassTransposition(0,6,2,6), [0m
    [22m[35m  ClassTransposition(0,6,5,6) ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  For purposes of demonstrating the capabilities of the factorization routine,
  in   Section[1m4.1[0m  Collatz'  permutation  is  factored.  Lothar  Collatz  has
  investigated  this  permutation  in1932.  Its cycle structure is unknown so
  far.
  
  Class  transpositions  can  be  written as products of any given number k of
  class  transpositions,  as  long  as the underlying ring has a residue class
  ring   of   cardinalityk.   Such   a   decomposition  can  be  obtained  by
  [22m[32mSplittedClassTransposition([22m[34mct[0m,[22m[34mk[0m)[0m.
  
  Obtaining  a  factorization  of  a bijective rcwa mapping into class shifts,
  class  reflections  and  class  transpositions  is particularly difficult if
  multiplier  and  divisor are coprime. A prototype of permutations which have
  this property has been introduced in a different context in[K99]:
  
  [1m[4m[31m2.4-2 mKnot[0m
  
  [1m[34m> mKnot( [0m[22m[34mm[0m[1m[34m ) _______________________________________________________[0mfunction
  [1mReturns:[0m  The permutation g_m as introduced in[K99].
  
  The argument [22m[34mm[0m must be an odd integer>=3.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> Display(mKnot(5));[0m
    [22m[35m[0m
    [22m[35mWild bijective rcwa mapping of Z with modulus 5[0m
    [22m[35m[0m
    [22m[35m                n mod 5                |              n^mKnot(5)[0m
    [22m[35m---------------------------------------+--------------------------------------[0m
    [22m[35m  0                                    | 6n/5[0m
    [22m[35m  1                                    | (4n + 1)/5[0m
    [22m[35m  2                                    | (6n - 2)/5[0m
    [22m[35m  3                                    | (4n + 3)/5[0m
    [22m[35m  4                                    | (6n - 4)/5[0m
    [22m[35m[0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  In  his  article,  Timothy  P.  Keller shows that a permutation of this type
  cannot have infinitely many cycles of any given finite length.
  
  
  [1m[4m[31m2.5 Determinant and sign[0m
  
  [1m[4m[31m2.5-1 Determinant[0m
  
  [1m[34m> Determinant( [0m[22m[34mg[0m[1m[34m ) ___________________________________________________[0mmethod
  [1m[34m> Determinant( [0m[22m[34mg, S[0m[1m[34m ) ________________________________________________[0mmethod
  [1mReturns:[0m  The determinant of the bijective rcwa mapping[22m[34mg[0m.
  
  The [22m[36mdeterminant[0m of an affine mapping n -> (an+b)/c whose source is a residue
  class  r(m)  is defined by b/|a|m. This definition is extended additively to
  determinants  of  rcwa  mappings and their restrictions to unions of residue
  classes.
  
  Using  the  notation from the definition of an rcwa mapping, the [22m[36mdeterminant[0m
  det(sigma)  of  an  rcwa mapping sigma is given by (see LaTeX version of the
  manual).
  
  The  determinant  mapping is an epimorphism from the group of all class-wise
  order-preserving   bijective   rcwa  mappings  of  Z  to  (Z,+),  see[K05],
  Theorem2.11.9.
  
  If  a  residue  class union[22m[34mS[0m is given as an additional argument, the method
  returns the determinant of the restriction of [22m[34mg[0m to[22m[34mS[0m.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> List([ClassTransposition(0,4,5,12),ClassShift(3,7)],Determinant);[0m
    [22m[35m[ 0, 1 ][0m
    [22m[35mgap> Determinant(ClassTransposition(0,4,5,12)*ClassShift(3,7)^100);   [0m
    [22m[35m100[0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  [1m[4m[31m2.5-2 Sign[0m
  
  [1m[34m> Sign( [0m[22m[34mg[0m[1m[34m ) _______________________________________________________[0mattribute
  [1mReturns:[0m  The sign of the bijective rcwa mapping[22m[34mg[0m.
  
  Using  the  notation  from  the definition of an rcwa mapping, the [22m[36msign[0m of a
  bijective  rcwa  mappingsigma  ofZ is defined by (see LaTeX version of the
  manual).
  
  The  sign  mapping  is  an  epimorphism from RCWA(Z) to the group Z^times of
  units  ofZ,  see[K05],  Theorem2.12.8.  Therefore  the kernel of the sign
  mapping is a normal subgroup of RCWA(Z) of index2.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> List([ClassTransposition(3,4,2,6),ClassShift(0,3),ClassReflection(2,5)],Sign);[0m
    [22m[35m[ 1, -1, -1 ][0m
    [22m[35mgap> Sign (ClassTransposition(3,4,2,6)*ClassShift(0,3)*ClassReflection(2,5));[0m
    [22m[35m1[0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  
  [1m[4m[31m2.6 Attributes and properties derived from the coefficients[0m
  
  A  number  of basic attributes and properties of an rcwa mapping are derived
  immediately from the coefficients of its affine partial mappings. This holds
  for  example for the multiplier and the divisor. These two values are stored
  as  attributes [22m[32mMultiplier[0m and [22m[32mDivisor[0m, or in short [22m[32mMult[0m resp. [22m[32mDiv[0m. The [22m[36mprime
  set[0m  of  an  rcwa mapping is the set of prime divisors of the product of its
  modulus  and  its multiplier. It is stored as an attribute [22m[32mPrimeSet[0m. An rcwa
  mapping  is  called  [22m[36mintegral[0m  if  its  divisor equals1. An rcwa mapping is
  called  [22m[36mbalanced[0m if its multiplier and divisor have the same prime divisors.
  An  integral  mapping has the property [22m[32mIsIntegral[0m and a balanced mapping has
  the  property  [22m[32mIsBalanced[0m. An rcwa mapping of the ring of integers or of one
  of  its  semilocalizations is called [22m[36mclass-wise order-preserving[0m if and only
  if  all coefficients a_r(m) in the numerators of the affine partial mappings
  are positive. The corresponding property is [22m[32mIsClassWiseOrderPreserving[0m.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> u := RcwaMapping([[3,0,5],[9,1,5],[3,-1,5],[9,-2,5],[9,4,5]]);;[0m
    [22m[35mgap> IsBijective(u);; Display(u);[0m
    [22m[35m[0m
    [22m[35mBijective rcwa mapping of Z with modulus 5[0m
    [22m[35m[0m
    [22m[35m                n mod 5                |                 n^f[0m
    [22m[35m---------------------------------------+--------------------------------------[0m
    [22m[35m  0                                    | 3n/5[0m
    [22m[35m  1                                    | (9n + 1)/5[0m
    [22m[35m  2                                    | (3n - 1)/5[0m
    [22m[35m  3                                    | (9n - 2)/5[0m
    [22m[35m  4                                    | (9n + 4)/5[0m
    [22m[35m[0m
    [22m[35mgap> Multiplier(u);[0m
    [22m[35m9[0m
    [22m[35mgap> Divisor(u);[0m
    [22m[35m5[0m
    [22m[35mgap> PrimeSet(u);[0m
    [22m[35m[ 3, 5 ][0m
    [22m[35mgap> IsIntegral(u) or IsBalanced(u);[0m
    [22m[35mfalse[0m
    [22m[35mgap> IsClassWiseOrderPreserving(u);[0m
    [22m[35mtrue[0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  
  [1m[4m[31m2.7 Functionality related to the affine partial mappings[0m
  
  [1m[4m[31m2.7-1 LargestSourcesOfAffineMappings[0m
  
  [1m[34m> LargestSourcesOfAffineMappings( [0m[22m[34mf[0m[1m[34m ) _____________________________[0mattribute
  [1mReturns:[0m  The  coarsest  partition  of  [22m[32mSource([22m[34mf[0m)[0m on whose elements the rcwa
            mapping[22m[34mf[0m is affine.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> LargestSourcesOfAffineMappings(ClassShift(3,7));[0m
    [22m[35m[ Z \ 3(7), 3(7) ][0m
    [22m[35mgap> LargestSourcesOfAffineMappings(ClassReflection(0,1));[0m
    [22m[35m[ Integers ][0m
    [22m[35mgap> u := RcwaMapping([[3,0,5],[9,1,5],[3,-1,5],[9,-2,5],[9,4,5]]);;[0m
    [22m[35mgap> List( [ u, u^-1 ], LargestSourcesOfAffineMappings );[0m
    [22m[35m[ [ 0(5), 1(5), 2(5), 3(5), 4(5) ], [ 0(3), 1(3), 2(9), 5(9), 8(9) ] ][0m
    [22m[35mgap> kappa := ClassTransposition(2,4,3,4) * ClassTransposition(4,6,8,12)[0m
    [22m[35m>           * ClassTransposition(3,4,4,6);; SetName(kappa,"kappa");[0m
    [22m[35mgap> LargestSourcesOfAffineMappings(kappa);[0m
    [22m[35m[ 2(4), 1(4) U 0(12), 3(12) U 7(12), 4(12), 8(12), 11(12) ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  [1m[4m[31m2.7-2 Multpk[0m
  
  [1m[34m> Multpk( [0m[22m[34mf, p, k[0m[1m[34m ) _______________________________________________[0moperation
  [1mReturns:[0m  The  union  of the residue classes r(m) such that p^k||a_r(m) if k
            >=  0,  and  the  union  of  the  residue  classes  r(m) such that
            p^k||c_r(m)  if k <= 0. In this context, m denotes the modulus and
            a_r(m)  and  c_r(m)  denote the coefficients of[22m[34mf[0m as introduced in
            the definition of an rcwa mapping.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> T := RcwaMapping([[1,0,2],[3,1,2]]);; # The Collatz mapping.[0m
    [22m[35mgap> [ Multpk(T,2,-1), Multpk(T,3,1) ];[0m
    [22m[35m[ Integers, 1(2) ][0m
    [22m[35mgap> u := RcwaMapping([[3,0,5],[9,1,5],[3,-1,5],[9,-2,5],[9,4,5]]);;[0m
    [22m[35mgap> [ Multpk(u,3,0), Multpk(u,3,1), Multpk(u,3,2), Multpk(u,5,-1) ];[0m
    [22m[35m[ [  ], 0(5) U 2(5), Z \ 0(5) U 2(5), Integers ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  [1m[4m[31m2.7-3 FixedPointsOfAffinePartialMappings[0m
  
  [1m[34m> FixedPointsOfAffinePartialMappings( [0m[22m[34mf[0m[1m[34m ) _________________________[0mattribute
  [1mReturns:[0m  A  list of the sets of fixed points of the affine partial mappings
            of the rcwa mapping[22m[34mf[0m in the quotient field of its source.
  
  The  returned list contains entries for the restrictions of[22m[34mf[0m to all residue
  classes  modulo  [22m[32mMod([22m[34mf[0m)[0m. A list entry can either be an empty set, the source
  of[22m[34mf[0m  or  a set of cardinality1. The ordering of the entries corresponds to
  the ordering of the residues in [22m[32mAllResidues(Source([22m[34mf[0m),[22m[34mm[0m)[0m.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> FixedPointsOfAffinePartialMappings(ClassShift(0,2));[0m
    [22m[35m[ [  ], Rationals ][0m
    [22m[35mgap> List([1..3],k->FixedPointsOfAffinePartialMappings(T^k));[0m
    [22m[35m[ [ [ 0 ], [ -1 ] ], [ [ 0 ], [ 1 ], [ 2 ], [ -1 ] ], [0m
    [22m[35m  [ [ 0 ], [ -7 ], [ 2/5 ], [ -5 ], [ 4/5 ], [ 1/5 ], [ -10 ], [ -1 ] ] ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  There   are   attributes   [22m[32mSetOnWhichMappingIsClassWise[0m   ([22m[32m-OrderPreserving[0m,
  [22m[32m-Constant[0m,  [22m[32m-OrderReversing[0m)  which  store  the union of the residue classes
  (mod[22m[32mMod([22m[34mf[0m)[0m)  on  which  an  rcwa  mapping[22m[34mf[0m  ofZ  or of a semilocalization
  thereof is class-wise order-preserving, class-wise constant resp. class-wise
  order-reversing.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> List([ClassTransposition(1,2,0,4),ClassShift(2,3),ClassReflection(2,5)],[0m
    [22m[35m>          SetOnWhichMappingIsClassWiseOrderPreserving );[0m
    [22m[35m[ Integers, Integers, Z \ 2(5) ][0m
    [22m[35mgap> SetOnWhichMappingIsClassWiseConstant(RcwaMapping([[2,0,1],[0,4,1]]));[0m
    [22m[35m1(2)[0m
    [22m[35mgap> SetOnWhichMappingIsClassWiseOrderReversing(ClassReflection(13,17));[0m
    [22m[35m13(17)[0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  
  [1m[4m[31m2.8 Transition graphs and transition matrices[0m
  
  [1m[4m[31m2.8-1 TransitionGraph[0m
  
  [1m[34m> TransitionGraph( [0m[22m[34mf, m[0m[1m[34m ) _________________________________________[0moperation
  [1mReturns:[0m  The transition graph of the rcwa mapping[22m[34mf[0m for modulus[22m[34mm[0m.
  
  The [22m[36mtransition graph[0m Gamma_f,m off for modulusm is defined as follows:
  
  (1)   The vertices are the residue classes (modm).
  
  (2)   There  is an edge from r_1(m) to r_2(m) if and only if there is some n
        in r_1(m) such that n^f in r_2(m).
  
  The  assignment  of the residue classes (modm) to the vertices of the graph
  corresponds to the ordering of the residues in [22m[32mAllResidues(Source([22m[34mf[0m),[22m[34mm[0m)[0m. The
  result is returned in the format used by the package [1mGRAPE[0m.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> TransitionGraph(ClassShift(0,1),6);[0m
    [22m[35mrec( isGraph := true, order := 6, group := Group(()), [0m
    [22m[35m  schreierVector := [ -1, -2, -3, -4, -5, -6 ], [0m
    [22m[35m  adjacencies := [ [ 2 ], [ 3 ], [ 4 ], [ 5 ], [ 6 ], [ 1 ] ], [0m
    [22m[35m  representatives := [ 1, 2, 3, 4, 5, 6 ], names := [ 1, 2, 3, 4, 5, 6 ] )[0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  [1m[4m[31m2.8-2 OrbitsModulo[0m
  
  [1m[34m> OrbitsModulo( [0m[22m[34mf, m[0m[1m[34m ) ____________________________________________[0moperation
  [1mReturns:[0m  The  partition  of  [22m[32mAllResidues(Source([22m[34mf[0m),[22m[34mm[0m)[0m  corresponding to the
            weakly  connected  components  of the transition graph of the rcwa
            mapping[22m[34mf[0m for modulus[22m[34mm[0m.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> OrbitsModulo(ClassTransposition(0,2,1,4),8);[0m
    [22m[35m[ [ 0, 1, 4 ], [ 2, 5, 6 ], [ 3 ], [ 7 ] ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  [1m[4m[31m2.8-3 FactorizationOnConnectedComponents[0m
  
  [1m[34m> FactorizationOnConnectedComponents( [0m[22m[34mf, m[0m[1m[34m ) ______________________[0moperation
  [1mReturns:[0m  The  set  of  restrictions  of  the  rcwa  mapping[22m[34mf[0m to the weakly
            connected components of its transition graph Gamma_f,m.
  
  The  product  of  the  returned  mappings  is[22m[34mf[0m. They have pairwise disjoint
  supports, hence any two of them commute.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> sigma :=   ClassTransposition(1,4,2,4)  * ClassTransposition(1,4,3,4)[0m
    [22m[35m>             * ClassTransposition(3,9,6,18) * ClassTransposition(1,6,3,9);;[0m
    [22m[35mgap> List(FactorizationOnConnectedComponents(sigma,36),Support);[0m
    [22m[35m[ 33(36) U 34(36) U 35(36), 9(36) U 10(36) U 11(36), [0m
    [22m[35m  <union of 23 residue classes (mod 36)> \ [ -6, 3 ] ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  [1m[4m[31m2.8-4 TransitionMatrix[0m
  
  [1m[34m> TransitionMatrix( [0m[22m[34mf, m[0m[1m[34m ) ________________________________________[0moperation
  [1mReturns:[0m  The transition matrix of the rcwa mapping[22m[34mf[0m for modulus[22m[34mm[0m.
  
  Let  M  be  this  matrix. Then for any two residue classes r_1(m), r_2(m) in
  R/mR, the entry M_r_1(m),r_2(m) is defined by
  
  (See  LaTeX  version  of  the manual.) The assignment of the residue classes
  (mod[22m[34mm[0m) to the rows and columns of the matrix corresponds to the ordering of
  the residues in [22m[32mAllResidues(Source([22m[34mf[0m),[22m[34mm[0m)[0m.
  
  The  transition  matrix  is a weighted adjacency matrix of the corresponding
  transition  graph [22m[32mTransitionGraph([22m[34mf[0m,[22m[34mm[0m)[0m. The sums of the rows of a transition
  matrix are always equal to1.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> T := RcwaMapping([[1,0,2],[3,1,2]]);; # The Collatz mapping.[0m
    [22m[35mgap> Display(TransitionMatrix(T^3,3));[0m
    [22m[35m[ [  1/8,  1/4,  5/8 ],[0m
    [22m[35m  [    0,  1/4,  3/4 ],[0m
    [22m[35m  [    0,  3/8,  5/8 ] ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  [1m[4m[31m2.8-5 Sources[0m
  
  [1m[34m> Sources( [0m[22m[34mf[0m[1m[34m ) ____________________________________________________[0mattribute
  [1mReturns:[0m  A  list  of  unions of residue classes modulo the modulusm of the
            rcwa mapping[22m[34mf[0m, as described below.
  
  The  returned list contains an entry for any strongly connected component of
  the  transition graph of[22m[34mf[0m for modulus[22m[32mMod([22m[34mf[0m)[0m which has only outgoing edges.
  The  list  entry  corresponding  to  such  a  component  is the union of the
  vertices belonging to it.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> Sources(ClassTransposition(0,2,1,2)*ClassTransposition(0,2,1,4));[0m
    [22m[35m[ 0(4) ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  [1m[4m[31m2.8-6 Sinks[0m
  
  [1m[34m> Sinks( [0m[22m[34mf[0m[1m[34m ) ______________________________________________________[0mattribute
  [1mReturns:[0m  (See [1m[34mSources[0m ([1m2.8-5[0m), with "outgoing" replaced by "ingoing".)
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> Sinks(ClassTransposition(0,2,1,2)*ClassTransposition(0,2,1,4));  [0m
    [22m[35m[ 1(4) ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  [1m[4m[31m2.8-7 Loops[0m
  
  [1m[34m> Loops( [0m[22m[34mf[0m[1m[34m ) ______________________________________________________[0mattribute
  [1mReturns:[0m  The  list  of non-isolated vertices of the transition graph of the
            rcwa mapping[22m[34mf[0m for modulus [22m[32mMod([22m[34mf[0m)[0m which carry a loop.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> Loops(ClassTransposition(0,2,1,2)*ClassTransposition(0,2,1,4));[0m
    [22m[35m[ 0(4), 1(4) ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  
  [1m[4m[31m2.9 Trajectories[0m
  
  [1m[4m[31m2.9-1 Trajectory[0m
  
  [1m[34m> Trajectory( [0m[22m[34mf, n, length[0m[1m[34m ) _________________________________________[0mmethod
  [1m[34m> Trajectory( [0m[22m[34mf, n, length, m[0m[1m[34m ) ______________________________________[0mmethod
  [1m[34m> Trajectory( [0m[22m[34mf, n, terminal[0m[1m[34m ) _______________________________________[0mmethod
  [1m[34m> Trajectory( [0m[22m[34mf, n, terminal, m[0m[1m[34m ) ____________________________________[0mmethod
  [1mReturns:[0m  The  first [22m[34mlength[0m iterates in the trajectory of the rcwa mapping[22m[34mf[0m
            starting  at[22m[34mn[0m,  resp.  the  initial part of the trajectory of the
            rcwa  mapping[22m[34mf[0m starting at[22m[34mn[0m which ends at the first occurence of
            an  iterate  in  the set [22m[34mterminal[0m. If the argument [22m[34mm[0m is given, the
            iterates are reduced (mod[22m[34mm[0m).
  
  To  save  memory  when computing long trajectories containing huge iterates,
  the  reduction (mod[22m[34mm[0m) is done each time before storing an iterate. In place
  of the ring element[22m[34mn[0m, the methods also accept a finite set of ring elements
  or a union of residue classes.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> T := RcwaMapping([[1,0,2],[3,1,2]]);; # The Collatz mapping.[0m
    [22m[35mgap> Trajectory(T,27,16); Trajectory(T,27,25,5);[0m
    [22m[35m[ 27, 41, 62, 31, 47, 71, 107, 161, 242, 121, 182, 91, 137, 206, 103, 155 ][0m
    [22m[35m[ 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 0, 3, 0, 0, 3, 0, 3, 0, 0, 3 ][0m
    [22m[35mgap> Trajectory(T,15,[1]); Trajectory(T,15,[1],2);[0m
    [22m[35m[ 15, 23, 35, 53, 80, 40, 20, 10, 5, 8, 4, 2, 1 ][0m
    [22m[35m[ 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1 ][0m
    [22m[35mgap> Trajectory(T,ResidueClass(Integers,3,0),Integers);[0m
    [22m[35m[ 0(3), 0(3) U 5(9), 0(3) U 5(9) U 7(9) U 8(27), [0m
    [22m[35m  <union of 20 residue classes (mod 27)>, <union of 73 residue classes (mod [0m
    [22m[35m    81)>, Z \ 10(81) U 37(81), Integers ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  [1m[4m[31m2.9-2 Trajectory[0m
  
  [1m[34m> Trajectory( [0m[22m[34mf, n, length, whichcoeffs[0m[1m[34m ) ____________________________[0mmethod
  [1m[34m> Trajectory( [0m[22m[34mf, n, terminal, whichcoeffs[0m[1m[34m ) __________________________[0mmethod
  [1mReturns:[0m  Either the list [22m[32mc[0m of triples of coprime coefficients such that for
            any[22m[32mk[0m it holds that [22m[32m[22m[34mn[0m^([22m[34mf[0m^(k-1)) = (c[k][1]*[22m[34mn[0m + c[k][2])/c[k][3][0m or
            the  last  entry of that list, depending on whether [22m[34mwhichcoeffs[0m is
            [22m[32m"AllCoeffs"[0m or [22m[32m"LastCoeffs"[0m.
  
  The  meanings  of  the  arguments [22m[34mlength[0m and [22m[34mterminal[0m are the same as in the
  methods  for the operation [22m[32mTrajectory[0m described above. In general, computing
  only   the  last  coefficient  triple  ([22m[34mwhichcoeffs[0m  =  [22m[32m"LastCoeffs"[0m)  needs
  considerably less memory than computing the entire list.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> Trajectory(T,27,[1],"LastCoeffs");[0m
    [22m[35m[ 36472996377170786403, 195820718533800070543, 1180591620717411303424 ][0m
    [22m[35mgap> (last[1]*27+last[2])/last[3];[0m
    [22m[35m1[0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  [1m[4m[31m2.9-3 IncreasingOn[0m
  
  [1m[34m> IncreasingOn( [0m[22m[34mf[0m[1m[34m ) _______________________________________________[0mattribute
  [1m[34m> DecreasingOn( [0m[22m[34mf[0m[1m[34m ) _______________________________________________[0mattribute
  [1mReturns:[0m  The  union  of  all  residue  classes r(m) such that |R/a_r(m)R| >
            |R/c_r(m)R|  resp.  |R/a_r(m)R| < |R/c_r(m)R|, where R denotes the
            source,   m   the  modulus  and  a_r(m),  b_r(m)  and  c_r(m)  the
            coefficients  of[22m[34mf[0m  as  introduced  in  the  definition of an rcwa
            mapping.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> List([1..3],k->IncreasingOn(T^k));[0m
    [22m[35m[ 1(2), 3(4), 3(4) U 1(8) U 6(8) ][0m
    [22m[35mgap> List([1..3],k->DecreasingOn(T^k));[0m
    [22m[35m[ 0(2), Z \ 3(4), 0(4) U 2(8) U 5(8) ][0m
    [22m[35mgap> a := RcwaMapping([[2,0,3],[4,-1,3],[4,1,3]]);; # Collatz' permutation.[0m
    [22m[35mgap> List([-2..2],k->IncreasingOn(a^k));[0m
    [22m[35m[ Z \ 1(8) U 7(8), 0(2), [  ], Z \ 0(3), 1(9) U 4(9) U 5(9) U 8(9) ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  [1m[4m[31m2.9-4 GluckTaylorInvariant[0m
  
  [1m[34m> GluckTaylorInvariant( [0m[22m[34ma[0m[1m[34m ) ________________________________________[0mfunction
  [1mReturns:[0m  The  invariant  introduced in[GT02]. This is (sum_i=1^l a_i * a_i
            mod l + 1)/(sum_i=1^l a_i^2), where l denotes the length of[22m[34ma[0m.
  
  The  argument  [22m[34ma[0m must be a list of integers. In[GT02] it is shown that if [22m[34ma[0m
  is  a trajectory of the `original' Collatz mapping n -> (n/2 if n even, 3n+1
  if  n  odd)  starting  at  an  odd  integer  >=  3 and ending at1, then the
  invariant lies in the interval ]9/13,5/7[.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> C := RcwaMapping([[1,0,2],[3,1,1]]);;[0m
    [22m[35mgap> List([3,5..49],n->Float(GluckTaylorInvariant(Trajectory(C,n,[1]))));[0m
    [22m[35m[ 0.701053, 0.696721, 0.708528, 0.707684, 0.706635, 0.695636, 0.711769,[0m
    [22m[35m  0.699714, 0.707409, 0.693833, 0.710432, 0.706294, 0.714242, 0.699935,[0m
    [22m[35m  0.714242, 0.705383, 0.706591, 0.698198, 0.712222, 0.714242, 0.709048,[0m
    [22m[35m  0.69612, 0.714241, 0.701076 ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  
  [1m[4m[31m2.10 Localizations of rcwa mappings of the integers[0m
  
  [1m[4m[31m2.10-1 LocalizedRcwaMapping[0m
  
  [1m[34m> LocalizedRcwaMapping( [0m[22m[34mf, p[0m[1m[34m ) _____________________________________[0mfunction
  [1m[34m> SemilocalizedRcwaMapping( [0m[22m[34mf, pi[0m[1m[34m ) ________________________________[0mfunction
  [1mReturns:[0m  The  rcwa mapping of Z_(p) resp. Z_(pi) with the same coefficients
            as the rcwa mapping [22m[34mf[0m ofZ.
  
  The  argument  [22m[34mp[0m  resp.  [22m[34mpi[0m  must  be a prime resp. a set of primes, and the
  argument[22m[34mf[0m must be an rcwa mapping ofZ whose modulus is a power of[22m[34mp[0m, resp.
  whose modulus has only prime divisors which lie in[22m[34mpi[0m.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> T := RcwaMapping([[1,0,2],[3,1,2]]);; # The Collatz mapping.[0m
    [22m[35mgap> Cycle(LocalizedRcwaMapping(T,2),131/13);[0m
    [22m[35m[ 131/13, 203/13, 311/13, 473/13, 716/13, 358/13, 179/13, 275/13, 419/13, [0m
    [22m[35m  635/13, 959/13, 1445/13, 2174/13, 1087/13, 1637/13, 2462/13, 1231/13, [0m
    [22m[35m  1853/13, 2786/13, 1393/13, 2096/13, 1048/13, 524/13, 262/13 ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  
  [1m[4m[31m2.11 Extracting roots of rcwa mappings[0m
  
  [1m[4m[31m2.11-1 Root[0m
  
  [1m[34m> Root( [0m[22m[34mf, k[0m[1m[34m ) _______________________________________________________[0mmethod
  [1mReturns:[0m  An  rcwa  mapping  [22m[32mg[0m such that [22m[32mg^[22m[34mk[0m=[22m[34mf[0m[0m, provided that such a mapping
            exists  and  that  there is a method available which can determine
            it.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> Root(ClassTransposition(0,2,1,2),100);[0m
    [22m[35m<bijective rcwa mapping of Z with modulus 8>[0m
    [22m[35mgap> last^100 = ClassTransposition(0,2,1,2);[0m
    [22m[35mtrue[0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  
  [1m[4m[31m2.12 Special functions for non-bijective mappings[0m
  
  [1m[4m[31m2.12-1 RightInverse[0m
  
  [1m[34m> RightInverse( [0m[22m[34mf[0m[1m[34m ) _______________________________________________[0mattribute
  [1mReturns:[0m  A  right inverse of the injective rcwa mapping[22m[34mf[0m, i.e. a mapping g
            such that [22m[34mf[0mg=1.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> twice := RcwaMapping([[2,0,1]]);[0m
    [22m[35mRcwa mapping of Z: n -> 2n[0m
    [22m[35mgap> twice * RightInverse(twice);[0m
    [22m[35mIdentityMapping( Integers )[0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  [1m[4m[31m2.12-2 CommonRightInverse[0m
  
  [1m[34m> CommonRightInverse( [0m[22m[34ml, r[0m[1m[34m ) ______________________________________[0moperation
  [1mReturns:[0m  A mapping d such that [22m[34ml[0md = [22m[34mr[0md = 1.
  
  The  mappings  [22m[34ml[0m  and  [22m[34mr[0m  must  be  injective,  and their images must form a
  partition of their source.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> twice := RcwaMapping([[2,0,1]]); twiceplus1 := RcwaMapping([[2,1,1]]);[0m
    [22m[35mRcwa mapping of Z: n -> 2n[0m
    [22m[35mRcwa mapping of Z: n -> 2n + 1[0m
    [22m[35mgap> Display(CommonRightInverse(twice,twiceplus1));[0m
    [22m[35m[0m
    [22m[35mRcwa mapping of Z with modulus 2[0m
    [22m[35m[0m
    [22m[35m                n mod 2                |                 n^f[0m
    [22m[35m---------------------------------------+--------------------------------------[0m
    [22m[35m  0                                    | n/2[0m
    [22m[35m  1                                    | (n - 1)/2[0m
    [22m[35m[0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  [1m[4m[31m2.12-3 ImageDensity[0m
  
  [1m[34m> ImageDensity( [0m[22m[34mf[0m[1m[34m ) _______________________________________________[0mattribute
  [1mReturns:[0m  The [22m[36mimage density[0m of the rcwa mapping[22m[34mf[0m.
  
  In  the  notation introduced in the definition of an rcwa mapping, the [22m[36mimage
  density[0m   of   an  rcwa  mappingf  is  defined  by  1/m  sum_r(m)  in  R/mR
  |R/c_r(m)R|/|R/a_r(m)R|.  The  image density of an injective rcwa mapping is
  <=  1,  and the image density of a surjective rcwa mapping is >= 1 (this can
  be  seen  easily).  Thus in particular the image density of a bijective rcwa
  mapping is1.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> T := RcwaMapping([[1,0,2],[3,1,2]]);; # The Collatz mapping.[0m
    [22m[35mgap> List( [ T, ClassShift(0,1), RcwaMapping([[2,0,1]]) ], ImageDensity );[0m
    [22m[35m[ 4/3, 1, 1/2 ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  Given an rcwa mapping [22m[32mf[0m, the function [22m[32mInjectiveAsMappingFrom[0m returns a set [22m[32mS[0m
  such that the restriction of [22m[32mf[0m to[22m[32mS[0m is injective, and such that the image of
  [22m[32mS[0m under[22m[32mf[0m is the entire image of[22m[32mf[0m.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> InjectiveAsMappingFrom(T);[0m
    [22m[35m0(2)[0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  
  [1m[4m[31m2.13 Probabilistic guesses on the behaviour of trajectories[0m
  
  This  section describes some functionality for getting "educated guesses" on
  the  overall  behaviour  of  the  trajectories  of a given rcwa mapping. Its
  contents  have  deliberately  been  separated  from the documentation of the
  non-probabilistic functionality related to trajectories of rcwa mappings.
  
  [1m[4m[31m2.13-1 LikelyContractionCentre[0m
  
  [1m[34m> LikelyContractionCentre( [0m[22m[34mf, maxn, bound[0m[1m[34m ) _______________________[0moperation
  [1mReturns:[0m  A list of ring elements (see below).
  
  This  operation  tries to compute the [22m[36mcontraction centre[0m of the rcwa mapping
  [22m[34mf[0m. Assuming its existence this is the unique finite subset S_0 of the source
  of[22m[34mf[0m on which [22m[34mf[0m induces a permutation and which intersects nontrivially with
  any  trajectory  of[22m[34mf[0m.  The  mapping[22m[34mf[0m is assumed to be [22m[36mcontracting[0m, i.e. to
  have such a contraction centre. As in general contraction centres are likely
  not  computable,  the  methods  for this operation are probabilistic and may
  return wrong results. The argument [22m[34mmaxn[0m is a bound on the starting value and
  [22m[34mbound[0m  is a bound on the elements of the trajectories to be searched. If the
  limit  [22m[34mbound[0m  is  exceeded,  an  Info message on Info level3 of [22m[32mInfoRCWA[0m is
  given.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> T := RcwaMapping([[1,0,2],[3,1,2]]);; # The Collatz mapping.[0m
    [22m[35mgap> S0 := LikelyContractionCentre(T,100,1000);[0m
    [22m[35m#I  Warning: `LikelyContractionCentre' is highly probabilistic.[0m
    [22m[35mThe returned result can only be regarded as a rough guess.[0m
    [22m[35mSee ?LikelyContractionCentre for information on how to improve this guess.[0m
    [22m[35m[ -136, -91, -82, -68, -61, -55, -41, -37, -34, -25, -17, -10, -7, -5, -1, 0, [0m
    [22m[35m  1, 2 ][0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  [1m[4m[31m2.13-2 GuessedDivergence[0m
  
  [1m[34m> GuessedDivergence( [0m[22m[34mf[0m[1m[34m ) __________________________________________[0moperation
  [1mReturns:[0m  A  floating  point  value which is intended to be a rough guess on
            how  fast  the  trajectories of the rcwa mapping[22m[34mf[0m diverge (return
            value greater than1) or converge (return value smaller than1).
  
  Nothing particular is guaranteed.
  
  [22m[35m---------------------------  Example  ----------------------------[0m
    [22m[35m[0m
    [22m[35mgap> GuessedDivergence(T);                                       [0m
    [22m[35m#I  Warning: GuessedDivergence: no particular return value is guaranteed.[0m
    [22m[35m0.866025[0m
    [22m[35m[0m
  [22m[35m------------------------------------------------------------------[0m
  
  
  [1m[4m[31m2.14 The categories and families of rcwa mappings[0m
  
  [1m[4m[31m2.14-1 IsRcwaMapping[0m
  
  [1m[34m> IsRcwaMapping( [0m[22m[34mf[0m[1m[34m ) _________________________________________________[0mfilter
  [1m[34m> IsRcwaMappingOfZ( [0m[22m[34mf[0m[1m[34m ) ______________________________________________[0mfilter
  [1m[34m> IsRcwaMappingOfZ_pi( [0m[22m[34mf[0m[1m[34m ) ___________________________________________[0mfilter
  [1m[34m> IsRcwaMappingOfGFqx( [0m[22m[34mf[0m[1m[34m ) ___________________________________________[0mfilter
  [1mReturns:[0m  [22m[32mtrue[0m  if [22m[34mf[0m is an rcwa mapping resp. an rcwa mapping of the ring of
            integers  resp.  an rcwa mapping of a semilocalization of the ring
            of  integers  resp.  an  rcwa  mapping of a polynomial ring in one
            variable over a finite field, and [22m[32mfalse[0m otherwise.
  
  Often the same methods can be used for rcwa mappings of the ring of integers
  and   of  its  semilocalizations.  For  this  reason  there  is  a  category
  [22m[32mIsRcwaMappingOfZOrZ_pi[0m   which   is   the   union  of  [22m[32mIsRcwaMappingOfZ[0m  and
  [22m[32mIsRcwaMappingOfZ_pi[0m.  The internal representation of rcwa mappings is called
  [22m[32mIsRcwaMappingStandardRep[0m.
  
  [1m[4m[31m2.14-2 RcwaMappingsFamily[0m
  
  [1m[34m> RcwaMappingsFamily( [0m[22m[34mR[0m[1m[34m ) __________________________________________[0mfunction
  [1mReturns:[0m  The family of rcwa mappings of the ring[22m[34mR[0m.
  
