"유한체 위의 정수론과 기하학"의 두 판 사이의 차이

수학노트
둘러보기로 가기 검색하러 가기
(피타고라스님이 이 페이지를 개설하였습니다.)
 
1번째 줄: 1번째 줄:
 +
<h5 style="margin: 0px; line-height: 3.428em; color: rgb(34, 61, 103); font-family: 'malgun gothic',dotum,gulim,sans-serif; font-size: 1.166em; background-position: 0px 100%;">이 항목의 수학노트 원문주소</h5>
  
 +
 
 +
 +
 
 +
 +
<h5>개요</h5>
 +
 +
 
 +
 +
 
 +
 +
# (*choose the range l for the list*)<br> l := 50<br> (*choose the polynomial to work with*)<br> Pol := x^2 - 5<br> disc := Discriminant[Pol, x]<br> (*choose the modulus*)<br> M := 5<br> Pr[l_] := Table[Prime[n], {n, 1, l}]<br> S := Pr[l]<br> (*output*)<br> Print["discriminant of polynomial", " ", Pol // TraditionalForm]<br> disc<br> (*decomposition of the given polynomial modulo p*)<br> TableForm[Table[{Mod[p, M], Factor[Pol, Modulus -> p]}, {p, S}],<br>  TableHeadings -> {S, {"residue class", "decomposition"}},<br>  TableAlignments -> Center]
 +
 +
 
 +
 +
 
 +
 +
<h5>메모</h5>
 +
 +
 
 +
 +
 
 +
 +
<h5>관련된 항목들</h5>
 +
 +
* [[이차잉여의 상호법칙]]
 +
* [[정수론에서의 상호법칙 (reciprocity laws)|더 일반적인 상호법칙들(reciprocity laws)]]
 +
* [[체론(field theory)]]
 +
 +
 
 +
 +
 
 +
 +
<h5>사전 형태의 자료</h5>
 +
 +
* http://ko.wikipedia.org/wiki/
 +
* http://en.wikipedia.org/wiki/
 +
* [http://eom.springer.de/default.htm The Online Encyclopaedia of Mathematics]
 +
 +
 
 +
 +
 
 +
 +
<h5>관련논문</h5>
 +
 +
* 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]. 
 +
* http://www.jstor.org/action/doBasicSearch?Query=
 +
* http://www.ams.org/mathscinet
 +
* http://dx.doi.org/

2011년 3월 23일 (수) 16:54 판

이 항목의 수학노트 원문주소

 

 

개요

 

 

  1. (*choose the range l for the list*)
    l := 50
    (*choose the polynomial to work with*)
    Pol := x^2 - 5
    disc := Discriminant[Pol, x]
    (*choose the 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]

 

 

메모

 

 

관련된 항목들

 

 

사전 형태의 자료

 

 

관련논문