All Projects → thofma → Hecke.jl

thofma / Hecke.jl

Licence: BSD-2-Clause license
Computational algebraic number theory

Programming Languages

julia
2034 projects

Projects that are alternatives of or similar to Hecke.jl

Awesome-Math-Learning
📜 Collection of the most awesome Math learning resources in the form of notes, videos and cheatsheets.
Stars: ✭ 73 (-48.59%)
Mutual labels:  math, discrete-mathematics, number-theory
Gap
Main development repository for GAP - Groups, Algorithms, Programming, a System for Computational Discrete Algebra
Stars: ✭ 447 (+214.79%)
Mutual labels:  math, computer-algebra
Grassmann.jl
⟨Leibniz-Grassmann-Clifford⟩ differential geometric algebra / multivector simplicial complex
Stars: ✭ 289 (+103.52%)
Mutual labels:  math, computer-algebra
Sage
Mirror of the Sage source tree -- please do not submit PRs here -- everything must be submitted via https://trac.sagemath.org/
Stars: ✭ 1,656 (+1066.2%)
Mutual labels:  math, computer-algebra
combi
Pythonic package for combinatorics
Stars: ✭ 51 (-64.08%)
Mutual labels:  math, discrete-mathematics
Mathnet Symbolics
Math.NET Symbolics
Stars: ✭ 256 (+80.28%)
Mutual labels:  math, computer-algebra
Sympy
A computer algebra system written in pure Python
Stars: ✭ 8,688 (+6018.31%)
Mutual labels:  math, computer-algebra
Symengine
SymEngine is a fast symbolic manipulation library, written in C++
Stars: ✭ 703 (+395.07%)
Mutual labels:  math, computer-algebra
Symengine.jl
Julia wrappers of SymEngine
Stars: ✭ 139 (-2.11%)
Mutual labels:  math, computer-algebra
Math Php
Powerful modern math library for PHP: Features descriptive statistics and regressions; Continuous and discrete probability distributions; Linear algebra with matrices and vectors, Numerical analysis; special mathematical functions; Algebra
Stars: ✭ 2,009 (+1314.79%)
Mutual labels:  math, number-theory
Reduce.jl
Symbolic parser generator for Julia language expressions using REDUCE algebra term rewriter
Stars: ✭ 172 (+21.13%)
Mutual labels:  math, computer-algebra
GNFS
A complete, proof-of-concept, C# implementation of the General Number Field Sieve algorithm for factoring very large semi-prime numbers. The focus was on readability and understandability of the code, not performance.
Stars: ✭ 39 (-72.54%)
Mutual labels:  math, number-theory
Oscar.jl
A comprehensive open source computer algebra system for computations in algebra, geometry, and number theory.
Stars: ✭ 182 (+28.17%)
Mutual labels:  math, computer-algebra
Angourimath
Open-source symbolic algebra library for C# and F#. One of the most powerful in .NET
Stars: ✭ 266 (+87.32%)
Mutual labels:  math, computer-algebra
Introduction-to-Discrete-Mathematics-for-Computer-Science-Specialization
[Coursera] Introduction to Discrete Mathematics for Computer Science Specialization
Stars: ✭ 71 (-50%)
Mutual labels:  discrete-mathematics, number-theory
Symengine.py
Python wrappers for SymEngine
Stars: ✭ 110 (-22.54%)
Mutual labels:  math, computer-algebra
Mppp
Multiprecision for modern C++
Stars: ✭ 196 (+38.03%)
Mutual labels:  math, computer-algebra
symengine.rb
Ruby wrappers for SymEngine
Stars: ✭ 26 (-81.69%)
Mutual labels:  math, computer-algebra
cldr-engine
Internationalization and localization in Typescript with Unicode CLDR, batteries included
Stars: ✭ 34 (-76.06%)
Mutual labels:  math
HCubature.jl
pure-Julia multidimensional h-adaptive integration
Stars: ✭ 119 (-16.2%)
Mutual labels:  math

Hecke

Builds

Docs dev Docs stable Build status Codecov

About

Hecke is a software package for algebraic number theory maintained by Claus Fieker, Tommy Hofmann and Carlo Sircana. It is written in julia and is based on the computer algebra packages Nemo and AbstractAlgebra. Hecke is part of the OSCAR project and the development is supported by the Deutsche Forschungsgemeinschaft DFG within the Collaborative Research Center TRR 195.

So far, Hecke provides the following features:

  • Number fields (absolute, relative, simple and non-simple)
  • Orders and ideals in number fields
  • Class and unit group computations of orders
  • Lattice enumeration
  • Sparse linear algebra
  • Class field theory
  • Abelian groups
  • Associative algebras
  • Ideals and orders in (semsimple) associative algebras
  • Locally free class groups of orders in semisimple algebras

Installation

To use Hecke, a julia version of 1.0 is necessary (the latest stable julia version will do). Please see https://julialang.org/downloads/ for instructions on how to obtain julia for your system. Once a suitable julia version is installed, use the following steps at the julia prompt to install Hecke:

julia> using Pkg
julia> Pkg.add("Hecke")

Citing Hecke

If your research depends on computations done with Hecke, please consider giving us a formal citation:

@inproceedings{nemo,
    author = {Fieker, Claus and Hart, William and Hofmann, Tommy and Johansson, Fredrik},
     title = {Nemo/Hecke: Computer Algebra and Number Theory Packages for the Julia Programming Language},
 booktitle = {Proceedings of the 2017 ACM on International Symposium on Symbolic and Algebraic Computation},
    series = {ISSAC '17},
      year = {2017},
     pages = {157--164},
  numpages = {8},
       url = {https://doi.acm.org/10.1145/3087604.3087611},
       doi = {10.1145/3087604.3087611},
 publisher = {ACM},
   address = {New York, NY, USA},
}

Quick start

Here is a quick example of using Hecke:

julia> using Hecke
...

Welcome to

  _    _           _
 | |  | |         | |
 | |__| | ___  ___| | _____
 |  __  |/ _ \/ __| |/ / _ \
 | |  | |  __/ (__|   <  __/
 |_|  |_|\___|\___|_|\_\___|

Version 0.10.12...
 ... which comes with absolutely no warrant whatsoever
(c) 2015-2019 by Claus Fieker, Tommy Hofmann and Carlo Sircana

julia> Qx, x = PolynomialRing(FlintQQ, "x");
julia> f = x^3 + 2;
julia> K, a = NumberField(f, "a");
julia> O = maximal_order(K);
julia> O
Maximal order of Number field over Rational Field with defining polynomial x^3 + 2
with basis [1,a,a^2]

Documentation

The online documentation can be found here:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].