To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
Languages
Recent
Show all languages
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

Genius (mathematics software)

From Wikipedia, the free encyclopedia

Genius
Developer(s)Jiri Lebl
Stable release
1.0.26[1] Edit this on Wikidata / 19 February 2021; 2 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.

YouTube Encyclopedic

  • 1/3
    Views:
    45 407
    979 769
    32 699
  • Using the New Math Software FluidMath
  • The Math Needed for Computer Science
  • How to Take All the Math Classes You Need Right From Your Computer

Transcription

History

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, but this merge never materialized. Version 1.0 was released in 2007 almost 10 years after the initial release.

Example GEL source code

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

Notes

  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.
This page was last edited on 10 April 2022, at 10:56
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.