Recursion

Recursion - Messages

#1 Posted: 3/29/2016 1:05:05 PM
Andrey Ivashov

Andrey Ivashov

2271 likes in 3734 posts.

Group: Super Administrator

Three simple examples of recursion usage taken from this document: http://twt.mpei.ac.ru/ochkov/Recursion.pdf (created by V.F. Ochkov).

recursionExamples.sm (16 KiB) downloaded 108 time(s).

recursionExamples.png

Best regards.
2 users liked this post
Alexander O. Melnik 3/29/2016 1:45:00 PM, Davide Carpi 3/29/2016 6:13:00 PM
#2 Posted: 3/29/2016 1:09:10 PM
Andrey Ivashov

Andrey Ivashov

2271 likes in 3734 posts.

Group: Super Administrator

Regarding 3-rd example: solution can be tested here: http://www.softschools.com/games/logic_games/tower_of_hanoi/

Regarding 2-nd example: as I mentioned, I took this example from the document, created by V.Ochkov. But I did a significant change against to the source - I've used vectorize function. Please see screenshot from referenced PDF:
mc_fibonacci_1.png
What I don't understand, is why Mathcad gives correct result after call Fibonacci function with vector passed as an argument? How it determines that user wants this function to be called for every single vector element? Miracle!

Best regards.
1 users liked this post
Davide Carpi 3/29/2016 6:14:00 PM
#3 Posted: 3/29/2016 1:44:43 PM
Radovan Omorjan

Radovan Omorjan

325 likes in 2052 posts.

Group: Moderator

Hello Andrey,

Thank you for your recent elevated activity on SMath

Wrote


What I don't understand, is why Mathcad gives correct result after call Fibonacci function with vector passed as an argument? How it determines that user wants this function to be called for every single vector element? Miracle!



It is not a miracle. If you use an interval variable in Mathcad (n in this example is an interval variable - not a vector) then if you use a function and pass that interval variable to it, you will have the result of every element in that interval variable (Fibonacci(n)= ). There is a restriction here though. You can call that function, but you can not assign its result to a variable.

Regards,
Radovan

P.S. V.Ochkov is one of the person who knows quite a lot about Mathcad and Mathcad Prime
When Sisyphus climbed to the top of a hill, they said: "Wrong boulder!"
2 users liked this post
Andrey Ivashov 3/29/2016 2:08:00 PM, Davide Carpi 3/29/2016 6:13:00 PM
#4 Posted: 3/29/2016 6:10:39 PM
Jean Giraud

Jean Giraud

983 likes in 6866 posts.

Group: User

What you are saying Radovan is true, but NOT exactly: explain the nuance.
In Mathcad n:=1..5 is a "scalar vector". It will tabulate w/o rows
identification. It will not transpose as it does not exist as numbers,
just a "vanishing iterator" working when invoked.
Don't know how it is implemented in the Mathcad version Andrey is talking
about. Presumably it has Fibonacci built-in "Fibonacci(n)". It may have
two built-in algo: one giving Fibonacci(12)=144 ,,, and another one or the
same built-in around "IfIsArray". So, if given Fibonacci(12)=144
and for n:=1..12 it will run over each values of n=0,1,2,3....
thus tabulating Fibonacci(for each n)=1,1,2,3,5,8,13 ...

Fibonacci has a non-recursive form, something like pi from Simon Plouffe.

Jean

Forum Fibonacci.gif

Pi [Simon Plouffe].sm (7 KiB) downloaded 70 time(s).
2 users liked this post
Davide Carpi 3/29/2016 6:14:00 PM, Andrey Ivashov 3/30/2016 5:54:00 AM
#5 Posted: 3/29/2016 7:01:58 PM
Jean Giraud

Jean Giraud

983 likes in 6866 posts.

Group: User

Hello Andrey,

If you ever meet Valery F. Ochov, his "colleagues" Konstantin, Viktor...
They helped me a lot in Mathsoft Collab and wish to thank them for Eternity.
My small brain is telling me the Mathcad "Vectorise Operator" is a creation
from the main inventors, mostly Allan Razdow. Generally, we can visualise
how it works under the hood like vectorising icfft(fft) ....

The code is deeper than reasonning. Vectorise over an RGB image will explode
the 3 R,G,B components side by side.
#6 Posted: 3/29/2016 7:14:32 PM
Andrey Ivashov

Andrey Ivashov

2271 likes in 3734 posts.

Group: Super Administrator

Radovan,

Wrote

It is not a miracle. If you use an interval variable in Mathcad (n in this example is an interval variable - not a vector) then if you use a function and pass that interval variable to it, you will have the result of every element in that interval variable (Fibonacci(n)= ). There is a restriction here though. You can call that function, but you can not assign its result to a variable.


Thank you! Now I see... it is just another type of data.

mc_array.png


Jean,
Thank you for clarifications and example!

Best regards.
#7 Posted: 3/30/2016 1:28:23 AM
Jean Giraud

Jean Giraud

983 likes in 6866 posts.

Group: User

Wrote

Thank you! Now I see... it is just another type of data.



Yes Andrey: just a scalar vector, abusely used in Mathcad ,
mostly for quick plot and gone wth the wind, like butter in the pan.

Jean
#8 Posted: 3/31/2016 12:46:01 AM
Mike Kaganski

Mike Kaganski

184 likes in 434 posts.

Group: User

Two things I want to note:

  1. Over time, recursion has changed in SMath: in the past, it was possible to use recursion directly; currently it seems to require a programming function like line(), otherwise it reports "function not defined" error.
    scr8.png
  2. Recursion isn't safe; improper termination condition that leads to infinite recursion will crash SMath. Try f(x):line(f(x),1,1) followed by f(2): (just remember to save your work first).

The latter indicates stack overflow, and absence of recursion depth checking. I hope that SMath will eventually implement a means of stack overflow protection, so that in such cases it will simply report "cannot evaluate: nesting too deep" instead of crash.

Also, it would be great if Andrey considered a kind of tail recursion optimization in the future.
С уважением, Михаил Каганский
2 users liked this post
frapuano 3/31/2016 4:12:00 AM, Davide Carpi 3/31/2016 2:13:00 PM
#9 Posted: 6/24/2021 8:45:38 PM
Alvaro Diaz Falconi

Alvaro Diaz Falconi

992 likes in 1675 posts.

Group: User

Hi. A way to handle recursions.

recursion.sm (85 KiB) downloaded 92 time(s).
recursion.pdf (330 KiB) downloaded 84 time(s).

Best regards.
Alvaro.
2 users liked this post
sergio 6/25/2021 5:08:00 AM, Fridel Selitsky 6/25/2021 8:06:00 AM
#10 Posted: 6/25/2021 9:28:19 AM
Jean Giraud

Jean Giraud

983 likes in 6866 posts.

Group: User

Recursion comes in many ways ... some attached.
1. Pure maths [Fibonacci, Factorial, Powers ...]
2. Curiosity [Hofstadter sequence]
3. Engineering application [Process Control Instrumentation]
4. Generate vector of functions [ChebyShev ...]
Jean.

PolyOrtho ChebyShev.sm (20 KiB) downloaded 59 time(s).
Maths Sequence Hofstadter.sm (33 KiB) downloaded 59 time(s).
Maths Fibonnaci.sm (71 KiB) downloaded 60 time(s).
#11 Posted: 6/25/2021 10:45:03 AM
Jean Giraud

Jean Giraud

983 likes in 6866 posts.

Group: User

Wrote

3. Engineering application [Process Control Instrumentation]


Few more productive advanced applications.

Inst_Control ON_OFF.sm (21 KiB) downloaded 62 time(s).
Inst_PID Discrete Schema EXAMPLE_3.sm (22 KiB) downloaded 60 time(s).
Inst_PID Discrete Schema EXAMPLE_7.sm (28 KiB) downloaded 55 time(s).
Inst_PID Discrete Schema EXAMPLE_2.sm (28 KiB) downloaded 59 time(s).
Inst_PID Discrete Schema EXAMPLE_6.sm (30 KiB) downloaded 60 time(s).
Inst_PID Discrete Schema EXAMPLE_1.sm (32 KiB) downloaded 66 time(s).
  • New Posts New Posts
  • No New Posts No New Posts