"유한체 위의 정수론과 기하학"의 두 판 사이의 차이
둘러보기로 가기
검색하러 가기
Pythagoras0 (토론 | 기여) 잔글 (찾아 바꾸기 – “<h5 (.*)">” 문자열을 “==” 문자열로) |
Pythagoras0 (토론 | 기여) (→관련논문) |
||
49번째 줄: | 49번째 줄: | ||
==관련논문== | ==관련논문== | ||
+ | * Mazur, Barry. 1993. “On the Passage from Local to Global in Number Theory.” arXiv:math/9307231 (June 30). http://arxiv.org/abs/math/9307231. | ||
+ | * Koblitz, Neal. 1982. Why Study Equations over Finite Fields? Mathematics Magazine 55, no. 3 (May 1): 144-149. doi:[http://dx.doi.org/10.2307/2690080 10.2307/2690080]. | ||
− | + | [[분류:정수론]] | |
− | |||
− | |||
− |
2013년 4월 2일 (화) 03:57 판
이 항목의 수학노트 원문주소
개요
코드
- (*choose the range l for the number of primes*)
l := 50
(*choose a polynomial to work with*)
Pol := x^2 - 5
disc := Discriminant[Pol, x]
(*choose a modulus*)
M := 5
Pr[l_] := Table[Prime[n], {n, 1, l}]
S := Pr[l]
(*output*)
Print["discriminant of polynomial", " ", Pol // TraditionalForm]
disc
(*decomposition of the given polynomial modulo p*)
TableForm[Table[{Mod[p, M], Factor[Pol, Modulus -> p]}, {p, S}],
TableHeadings -> {S, {"residue class", "decomposition"}},
TableAlignments -> Center]
메모
관련된 항목들
사전 형태의 자료
관련논문
- Mazur, Barry. 1993. “On the Passage from Local to Global in Number Theory.” arXiv:math/9307231 (June 30). http://arxiv.org/abs/math/9307231.
- Koblitz, Neal. 1982. Why Study Equations over Finite Fields? Mathematics Magazine 55, no. 3 (May 1): 144-149. doi:10.2307/2690080.