You can load this session from /home/ceng303/maple/sessions as: ch3_2.mw
Session 3.2 Converting lists into arrays and sets
> restart;
> a1:=[[1,2],[3,4],[5,6]];
> a:=convert(a1,array);
> a[3,2];
> eq:=['eq1','eq2','eq3'];Sets are needed in solving equations
> convert(eq,set);
>