A common theme throughout discussions of the mathematics behind nature is the use of recursion. Recursion in computer science and mathematics refers to a function where it references itself. Recursion is the basic concept for the fractals I have been researching. The design is crafted by referencing the design again and again, until a base case is reached. Common recursive sequences are Fibonacci, where the following number is the addition of the two previous numbers, L systems, where instructions are created with letters that reference phrases consisting of more letters, and Sirpinski’s triangle, where triangles are made of smaller triangles. Dan Shiffman and his book The Nature of Code served as a good base for my knowledge about fractals. I have been familiar with Dan Shiffman since freshman year, as he has many video tutorials and explanations for the concepts we explored in CSP. He talks about the concept of self similarity, or a smaller version of the whole model, and repetition, repeating that self similarity until a base case– two concepts at the core of recursion. Recursion is very useful for modeling plants because it replicates biological processes of branching. When plants obtain enough nutrients and energy, they create a bud that then grows into a branch similar to those previous.
Recent Comments