Ask Your Question

Oscar Riveros's profile - activity

2013-06-24 01:38:08 +0200 received badge  Editor (source)
2013-06-24 01:37:19 +0200 answered a question Solving polynomial equations over p-adic fields

R.<x> = Zq(3^4,2);

RAB.< a,b> = R[];

a, b = var('a, b')

solve([a+b==6,a-b==2], [a,b])

[[a == 4, b == 2]]