Difference between revisions of "Recursive definition"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(Created page with "A '''recursive definition''' (or '''inductive definition''') in mathematical logic and computer science is used to define the elements in a [...")
 
(External links)
 
(One intermediate revision by the same user not shown)
Line 18: Line 18:
  
 
* [https://en.wikipedia.org/wiki/Recursive_definition Recursive definition] @ Wikipedia
 
* [https://en.wikipedia.org/wiki/Recursive_definition Recursive definition] @ Wikipedia
 +
 +
 +
[[Category:Computer science]]
 +
[[Category:Mathematics]]
 +
[[Category:Recursion]]

Latest revision as of 21:32, 25 April 2016

A recursive definition (or inductive definition) in mathematical logic and computer science is used to define the elements in a set in terms of other elements in the set.

Description

A recursive definition of a function defines values of the functions for some inputs in terms of the values of the same function for other inputs.

See also

External links