Question: what is the meaning of % ?

i want to calculate the eigenvalues and eigenvectors of two matrices ,i get these results, can anyone explain to me the meaning ?

A:=linalg[matrix](3,3,[-1,2,0,4,-2,3,0,1,-3]);
> B:=linalg[matrix](3,3,[2,0,1,4,-1,1,2,0,-5]);

> eigenvalues(A);

                  8                                    4
1/2 %2 + -------------------- - 2, - 1/4 %2 - --------------------
                      1/2 1/3                              1/2 1/3
         (20 + 4 I 231   )                    (20 + 4 I 231   )

                  1/2 /                  8          \
     - 2 + 1/2 I 3    |1/2 %2 - --------------------|, - 1/4 %2
                      |                      1/2 1/3|
                      \         (20 + 4 I 231   )   /

                4
     - -------------------- - 2
                    1/2 1/3
       (20 + 4 I 231   )

              1/2 /                  8          \
     - 1/2 I 3    |1/2 %2 - --------------------|
                  |                      1/2 1/3|
                  \         (20 + 4 I 231   )   /

               1
%1 := --------------------
                   1/2 1/3
      (20 + 4 I 231   )

                   1/2 1/3
%2 := (20 + 4 I 231   )

eigenvectors(B);
               1/2      [            1/2  65          1/2   ]
[- 3/2 + 1/2 57   , 1, {[7/4 + 1/4 57   , -- + 9/28 57   , 1]}],
                        [                 28                ]

                   1/2      [            1/2  65          1/2   ]
    [- 3/2 - 1/2 57   , 1, {[7/4 - 1/4 57   , -- - 9/28 57   , 1]}],
                            [                 28                ]

    [-1, 1, {[0, 1, 0]}]

Please Wait...