I was curious about P-adics and finite fields, and I came up with the idea to create a finite field based off of balanced ternary, let's call it GF(3)[-1]. The elements of this field are {-1, 0, 1}. This field has the following multiplication and addition properties. 1 + -1 = 0 1 + 1 = -1 1 + 0 = 1 -1 + 0 = -1
1 * -1 = -1 1 * 0 = 0 -1 * 0 = 0 -1 * -1 = 1*1 = 1
You could also define fields like GF(5)[-1] with elements {-2, 1, 0, 1, 2}, and GF(7)[-1] with {-3, -2, -1, 0, 1, 2, 3}, and so on. My question is if these fields are isomorphic to their non balanced counterparts(for example, is GF[3] isomorphic to GF(3)[-1]?), and if not, are these fields well studied? I am very new to abstract algebra, so please don't judge me too hard if this is a stupid question.