Question: how maple can recognize numeric from symbol?

i have 3 equations which contains both numeric and symbols, how can i seprrate these to ?
for example :

> restart:
> eq1:=a[1]^3+a[2]+a[3]^2+50;

> eq2:=a[1]^2+5*a[2]+a[3]+44;

> eq3:=a[1]+a[2]+a[3]^2+74;

i want maple to seprate these three equations in two vectors,first vector including symbols and second one includes numerics , like this :
V1:=<<a[1]^3+a[2]+a[3]^2>,<a[1]^2+5*a[2]+a[3]>,<a[1]+a[2]+a[3]^2>>;

V2:=<<50>,<44>,<74>>;

eq:=<<eq1>,<eq2>,<eq3>>;

so that 

is(V1+V2=eq);

gives me the answer true.
tnx for help.

Please Wait...