Hubbry Logo
search button
Sign in
Genius (mathematics software)
Genius (mathematics software)
Comunity Hub
History
arrow-down
starMore
arrow-down
bob

Bob

Have a question related to this hub?

bob

Alice

Got something to say related to this hub?
Share it here.

#general is a chat channel to discuss anything related to the hub.
Hubbry Logo
search button
Sign in
Genius (mathematics software)
Community hub for the Wikipedia article
logoWikipedian hub
Welcome to the community hub built on top of the Genius (mathematics software) Wikipedia article. Here, you can discuss, collect, and organize anything related to Genius (mathematics software). The purpos...
Add your contribution
Genius (mathematics software)
Genius
Developer(s)Jiri Lebl
Stable release
1.0.26[1] Edit this on Wikidata / 19 February 2021; 4 years ago (19 February 2021)
Repository
Written inC
Operating systemCross-platform (Linux, macOS)
TypeTechnical computing
LicenseGPL
Websitewww.jirka.org/genius.html

Genius (also known as the Genius Math Tool) is a free open-source numerical computing environment and programming language,[2] similar in some aspects to MATLAB, GNU Octave, Mathematica and Maple. Genius is aimed at mathematical experimentation rather than computationally intensive tasks. It is also very useful as just a calculator. The programming language is called GEL and aims to have a mathematically friendly syntax. The software comes with a command-line interface and a GUI, which uses the GTK+ libraries. The graphical version supports both 2D and 3D plotting. The graphical version includes a set of tutorials originally aimed at in class demonstrations.

History

[edit]

Genius was the original calculator for the GNOME project started in 1997, but was split into a separate project soon after the 0.13 release of GNOME in 1998. Because of this ancestry, it was also known as Genius Calculator or GNOME Genius. There was an attempt to merge Genius and the Dr. Geo interactive geometry software,[3] but this merge never materialized.[4] Version 1.0 was released in 2007 almost 10 years after the initial release.

Example GEL source code

[edit]

Here is a sample definition of a function calculating the factorial recursively

function f(x) = (
  if x <= 1 then
    1
  else
    (f(x-1)*x)
)

GEL contains primitives for writing the product iteratively and hence we can get the following iterative version

function f(x) = prod k=1 to x do k

See also

[edit]

Notes and references

[edit]
  1. ^ George Lebl (18 February 2021). "GENIUS 1.0.26 the "Dilapidated barn" release". Retrieved 19 February 2021.
  2. ^ "Genius". www.jirka.org. Retrieved 2009-03-06.
  3. ^ Lebl, George (6 Sep 1999). "Genius Future: Dr.Genius (Dr.Geo+Genius)". genius-list (Mailing list). Retrieved 18 June 2024.
  4. ^ Fernandes, Hilaire (24 Jul 2002). "savannah.gnu.org: submission of Dr. Geo". savannah-hackers (Mailing list). Retrieved 18 June 2024. DrGeo was replaced by Drgenius when merging with the Genius software but DrGenius will be again replaced by DrGeo in new the version.