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

수학노트
둘러보기로 가기 검색하러 가기
(피타고라스님이 이 페이지의 위치를 <a href="/pages/3154692">정수론의 주제들</a>페이지로 이동하였습니다.)
15번째 줄: 15번째 줄:
 
<h5>코드</h5>
 
<h5>코드</h5>
  
# (*choose the range l for the number of primes*)<br> l := 50<br> (*choose a 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]
+
# (*choose the range l for the number of primes*)<br> l := 50<br> (*choose a polynomial to work with*)<br> Pol := x^2 - 5<br> disc := Discriminant[Pol, x]<br> (*choose a 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]
  
 
 
 
 
32번째 줄: 32번째 줄:
 
* [[정수론에서의 상호법칙 (reciprocity laws)|더 일반적인 상호법칙들(reciprocity laws)]]
 
* [[정수론에서의 상호법칙 (reciprocity laws)|더 일반적인 상호법칙들(reciprocity laws)]]
 
* [[체론(field theory)]]
 
* [[체론(field theory)]]
 +
* [[타니야마-시무라 추측(정리)]]
  
 
 
 
 

2012년 4월 13일 (금) 18:56 판

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

 

 

개요

 

 

 

코드
  1. (*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]

 

 

메모

 

 

관련된 항목들

 

 

사전 형태의 자료

 

 

관련논문