||'''Book'''|| Advanced Engineering Mathematics ||
 ||'''Author'''|| Erwin Kreyszig ||
 ||'''Edition'''|| 8th Edition ||

/* code_begins */

{{{
#v = a x b
#where a = [1,1,0]
#and b = [3,,0,0]
var('a, b, v')
a = vector(QQ, [1, 1, 0])
b = vector(QQ, [3, 0 ,0])
print a,b
v = a.cross_product(b)
print v
}}}

/* code_ends */

 * '''Solution by''': 
   * W Shanti Priya, Student, I2IT Pune