One Hat Cyber Team
Your IP :
216.73.216.216
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
mellit
/
public_html
/
groebner
/
View File Name :
index.html
<html> <head> <title>Groebner basis</title> </head> <body> <h2>Groebner basis</h2> For using the program, please download <a href="groebner.jar">groebner.jar</a> and <a href="groebner.bat">groebner.bat</a>. In order to run it needs JDK 1.3 or 1.4 (Java Development Kit). JDK can be downloaded <a href="http://java.sun.com">here</a>. Sources are <a href="src.zip">here</a>. Please be sure that JDK is installed and java is in CLASSPATH (to check it, type "java" at command prompt. There must be a screen, displaying command line parameters for java). Then you can try to run groebner by typing "groebner" at command prompt in the directory where you downloaded files. <p> <h3>Features</h3> The program works with algebras given by letters and relations. It is possible to mark some letters as "central", i.e. commuting with every other letter. Features are: <ul> <li>Computation of groebner basis. It is possible to define order on monomials using weights of letters, so that all monomials containing letter with high weight will be greater then monomials not containing this letter.</li> <li>Search of central elements.</li> <li>Computation in algebras.(Calculator)</li> </ul> <h3>Example</h3> First make a setting file (<a href="projections.in">projections.in</a>). It should be like: <pre> [Alphabet] p1 p2 //Projections central weight -1 tau //central element [Generators] p1 p2[Relations] "p1^2-p1" "p2^2-p2" </pre> <p> It is an algebra of two idempotents without relations. We added letter tau because in future we will find central element and assign it to tau. It has weight -1 because we need to consider our algebra over its center so every word containing p1 or p2 will be greater then word, containing only tau's. Now compute groebner basis: <pre> groebner groebner projections.in projections.out </pre> We see that original relations already formed groebner basis. Then try to find central element and assign it to tau: <pre> groebner center projections.out projections.out tau </pre> After it, recompute groebner basis: <pre> groebner groebner projections.out projections.out </pre> It can be seen that our algebra is four dimensional over its center generated by tau (<a href="projections.out">projections.out</a>). We can do some calculations by using calculator mode: <pre> groebner calculator projections.out </pre> <h3>More sofisticated example</h3> Consider the problem: <br> For which numbers m algebra generated by three idempotents x,y,z and sum m is non-zero?<br> Prepare the following input file (<a href="D4.in">D4.in</a>): <pre> [alphabet] x y z weight -1 central m [relations] "x^2-x" "y^2-y" "z^2-z" "x+y+z-m" </pre> Then use groebner: <pre> groebner groebner D4.in D4.out </pre> Look at <a href="D4.out">D4.out</a> One of relations is "9m - 45/2m^2 + 20m^3 - 15/2m^4 + m^5". It means if algbera is non-zero, then 9m - 45/2m^2 + 20m^3 - 15/2m^4 + m^5=0. We can factor this polynomial and get: <br> 1/2*m*(m-1)*(m-2)*(m-3)*(2*m-3)<br> It means that possible values of m are 0, 1, 3/2, 2, 3, which is well known. </body> </html>