You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bound for number of quadratic resides in a finite field
polynomials in a finite field
lagrange interpolation
d+1 points uniquely define a d-degreee polynomial which in turn is uniquely defined by its d+1 coefficients
the difference between the order (of a group / field) and a characteristic (of a field)
can a field have ene element?
p=11F=GF(p)
# maps elements in the field to it's square roots (if any)# for a given element it's square roots are the inverse of each other (obviously)square_roots= {}
foryinF:
square_roots[y] = [];
forxinF:
ifx*x==y : square_roots[y].append(x);
print(f"GF{p} elements and it's square roots: {square_roots}")