473,406 Members | 2,259 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Help understanding Scheme's syntax, procedures and calls

I'm trying to understand a functional language code fragment so I can
explain its syntax and workings to my non English-speaking background
neighbour, who is doing her finals.

What in heaven's name is this code fragment intending? (In English
prose if possible).

It looks like a fragment from a language called "scheme"

(define (this n)
(if (=n 0)
0
(= n (this (- n 1)))))
(define (f1 a b)
(if >b a)
0
(+ b (f1 a (+ b 1)))))
(define (that n)
(f1 n1)

a) Describe the processing that occurs during the evaluation of the
expression (this 4)
b) Explain why the expression (=(this n)(that n) always evaluates to
true when n is a positive integer.
c) Write a fragment of code in the above language that adds up all the
integers within a given range, not including the two numbers
specified. For example, if the specified range was 4 à 9 then code
should add 5à 8.

Suggested answers:

a)

This 4 call started
As n-1=3 a recursive This 3 call is started
As n-1=2 a This 2 call starts
As n-1=1 a This 1 call starts
As n-1=0 a This 0 call is started and is returned as n=0
This 1 call is resolved by adding 1+0
This 2 call is resolved by adding 2+1
This 3 call is resolved by adding 3+3
Finally 10 is returned when This 4 call is resolved by adding 4 + 6.

I no more grasp the pattern of the suggested answer than the question,
and am much less in a position to explain it to anyone.

b)

Both the This and the That functions have the same output, and
furthermore both functions result in infinite recursion if n<0. When n
is a positive integer, the This function calculates
(n+…(3+(2+(1+(0)))) and the that function calculates
(1+(2+(3+…(n=(0)))). Both will always result in the same answer. The
list (=a b) only evaluates to true when a=b, as a does equal b the
list always evaluates to true for n>0.

Perhaps this answer will make more sense when I understand the code
fragment.

c)

Solution 1 (without existing functions)

(define (internal-range a b)
(if(>=(+ a 1)b)
0
(+(= a 1)(internal-range(+ a 1)b))))

Solution 2 using existing functions. And assuming a<b

(define (internal-range2 a b)
(-(this b) (this a)b))

Solution 3 using existing functions and dealing with a>b case
(define (internal-range3 a b)
(if (< a b)
(-(this b) (this a)b)
(-(this a) (this b)a)))

What is the role of the "0" character in solution 1 and the initial
fragment? What is the syntax rule being followed by the parentheses?

They note that the code was tested by "Dr Scheme" at
www.plt-scheme.org


Thanks
Jul 18 '05 #1
12 1346
Fran wrote:
I'm trying to understand a functional language code fragment so I can
explain its syntax and workings to my non English-speaking background
neighbour, who is doing her finals.

What in heaven's name is this code fragment intending? (In English
prose if possible).

It looks like a fragment from a language called "scheme"

(define (this n)
(if (=n 0)
0
(= n (this (- n 1)))))
(define (f1 a b)
(if >b a)
0
(+ b (f1 a (+ b 1)))))
(define (that n)
(f1 n1)

[silly disclaimer] I don't know Scheme but I'd suppose the above to be
equivalent to the following python (you seem to have some problems counting
the brackets :-)

def this(n):
if n == 0:
return 0
else:
return n + this(n-1)

def f1(a, b):
if b > a:
return 0
else:
return b + f1(a, b+1)

def that(n):
return f1(n, 1)

# try it out
print this(4)
print 'experimental "proof"'
ALL_POSITIVE_INTEGERS = range(1, 10)
for i in ALL_POSITIVE_INTEGERS:
print "%s:" % i, this(i), that(i)

Otherwise I'd suggest that you download Scheme and just try it out. Perhaps
they even have a debugger so you can step through the instructions one at a
time...

Peter

PS: More help would certainly lead to disqualification.

Jul 18 '05 #2
fr********@mail.com (Fran) writes:
I'm trying to understand a functional language code fragment so I can
explain its syntax and workings to my non English-speaking background
neighbour, who is doing her finals. What in heaven's name is this code fragment intending? (In English
prose if possible). It looks like a fragment from a language called "scheme" (define (this n)
(if (=n 0)
0
(= n (this (- n 1)))))
As given this is almost certainly wrong. The first problem is possibly just a
transcription error in that (=n 0) should probably be (= n 0). The second one
is the that the last line doesn't make sense. It looks like someone is
confused about how if statements work. Since this looks suspiciously like
homework I'm only giving a hint. If statements work like
(if expr1
(expr to return if exp1 is true)
(expr to return if exp1 is false))
Since each arm is an expression to evaluate it means you evaluate '=' as a
function in the last line hence it returns a boolean, which is going to cause
you grief after a short while.
(define (f1 a b)
(if >b a)
0
(+ b (f1 a (+ b 1)))))


This is wrong syntactically (hint: the first expression for the if statement)

The questions wouldn't make sense until you fixed the functions.

There is a comp.lang.scheme incidentally.

Eddie
Jul 18 '05 #3
Unfortunately it looks more like 'broken scheme'.

Fran wrote:
(define (this n)
(if (=n 0)
0
(= n (this (- n 1)))))
That looks fine, however:
(define (f1 a b)
(if >b a)
0
(+ b (f1 a (+ b 1)))))
Has 6 (s and 7 )s. I expect that the seconds line should read
(if (> b a)
(define (that n)
(f1 n1)


Again there is an imbalance in the ( and ), I think the second line should read
(f1 n 1)), note the space between then 'n' and the '1'.

Is this someone's homework by any chance?
Jul 18 '05 #4
On 2004-08-12, Peter Hickman <pe***@semantico.com> wrote:
Is this someone's homework by any chance?


According to the OP, it's part of a final exam.

--
Grant Edwards grante Yow! Yow! Those people
at look exactly like Donnie
visi.com and Marie Osmond!!
Jul 18 '05 #5
Grant Edwards wrote:
On 2004-08-12, Peter Hickman <pe***@semantico.com> wrote:

Is this someone's homework by any chance?

According to the OP, it's part of a final exam.


So they are completely shot then?
Jul 18 '05 #6
fr********@mail.com (Fran) wrote in message news:<95**************************@posting.google. com>...
<Scheme question>

The right place where to ask this question is comp.lang.scheme.
They are pretty gentle with newbies, so don't worry ;)

Michele Simionato
Jul 18 '05 #7
ed***@holyrood.ed.ac.uk (Eddie Corns) wrote in message news:<cf**********@scotsman.ed.ac.uk>...
fr********@mail.com (Fran) writes:
I'm trying to understand a functional language code fragment so I can
explain its syntax and workings to my non English-speaking background
neighbour, who is doing her finals.

What in heaven's name is this code fragment intending? (In English
prose if possible).

It looks like a fragment from a language called "scheme"

(define (this n)
(if (=n 0)
0
(= n (this (- n 1)))))


As given this is almost certainly wrong. The first problem is possibly just a
transcription error in that (=n 0) should probably be (= n 0). The second one
is the that the last line doesn't make sense. It looks like someone is
confused about how if statements work. Since this looks suspiciously like
homework I'm only giving a hint. If statements work like
(if expr1
(expr to return if exp1 is true)
(expr to return if exp1 is false))
Since each arm is an expression to evaluate it means you evaluate '=' as a
function in the last line hence it returns a boolean, which is going to cause
you grief after a short while.
(define (f1 a b)
(if >b a)
0
(+ b (f1 a (+ b 1)))))


This is wrong syntactically (hint: the first expression for the if statement)

The questions wouldn't make sense until you fixed the functions.

There is a comp.lang.scheme incidentally.

Eddie


Thanks for the help. It's not homework but from an old exam paper, but
the girl's English isn't absolutely fluent and I'm looking for a
simple way to explain the expressions and functions.

FRAN
Jul 18 '05 #8
Peter Hickman <pe***@semantico.com> wrote in message news:<41***********************@news.easynet.co.uk >...
Unfortunately it looks more like 'broken scheme'.

Fran wrote:
(define (this n)
(if (=n 0)
0
(= n (this (- n 1)))))


That looks fine, however:
(define (f1 a b)
(if >b a)
0
(+ b (f1 a (+ b 1)))))


Has 6 (s and 7 )s. I expect that the seconds line should read
(if (> b a)
(define (that n)
(f1 n1)


Again there is an imbalance in the ( and ), I think the second line should read
(f1 n 1)), note the space between then 'n' and the '1'.

Is this someone's homework by any chance?


Thanks for the help. It's not homework but from an old exam paper, but
the girl's English isn't absolutely fluent and I'm looking for a
simple way to explain the expressions and functions.

FRAN
Jul 18 '05 #9
Grant Edwards <gr****@visi.com> wrote in message news:<41***********************@newsreader.visi.co m>...
On 2004-08-12, Peter Hickman <pe***@semantico.com> wrote:
Is this someone's homework by any chance?


According to the OP, it's part of a final exam.


It's not a final exam (that won't come until October-November) but
from an old exam paper. The girl's English isn't absolutely fluent and
I'm looking for a simple way to explain the expressions and functions.

FRAN
Jul 18 '05 #10
fr********@mail.com (Fran) writes:
I'm trying to understand a functional language code fragment so I can
explain its syntax and workings to my non English-speaking background
neighbour, who is doing her finals. What in heaven's name is this code fragment intending? (In English
prose if possible). It looks like a fragment from a language called "scheme" (define (this n)
(if (=n 0)
0
(= n (this (- n 1)))))
(define (f1 a b)
(if >b a)
0
(+ b (f1 a (+ b 1)))))
(define (that n)
(f1 n1)


For the record these three functions should have been written.

(define (this n)
(if (= n 0)
0
(+ n (this (- n 1)))))
(define (f1 a b)
(if (> b a)
0
(+ b (f1 a (+ b 1)))))
(define (that n)
(f1 n 1))

Which would have been obvious if I'd bothered to read the detailed stuff later
instead of assuming. Peter's translation is correct. It's basically testing
reasoning about recursive functions. You need to know that, unlike Python,
every expression returns a value and every '(...)' is an expression to be
evaluated. So the 'if' statement returns the result of whichever of the arms
it takes, which in turn becomes the result of the function.

Eddie
Jul 18 '05 #11
> Thanks for the help. It's not homework but from an old exam paper, but
the girl's English isn't absolutely fluent and I'm looking for a
simple way to explain the expressions and functions.


If there are points to be won for brevity then the answer is 'two functions (one
with a helper) to compute factorials'
Jul 18 '05 #12
Peter Hickman <pe***@semantico.com> wrote in message news:<41**********************@news.easynet.co.uk> ...
Thanks for the help. It's not homework but from an old exam paper, but
the girl's English isn't absolutely fluent and I'm looking for a
simple way to explain the expressions and functions.


If there are points to be won for brevity then the answer is 'two functions (one
with a helper) to compute factorials'

Thanks greatly ...

Admirably concise.

FRAN
Jul 18 '05 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

699
by: mike420 | last post by:
I think everyone who used Python will agree that its syntax is the best thing going for it. It is very readable and easy for everyone to learn. But, Python does not a have very good macro...
3
by: slash | last post by:
Hi , Im new to MySql and i have no idea how to convert a sql server user defined function to MySql. Can any one help me.. CREATE FUNCTION ChildCategories (@categoryId int, @taxId int,...
0
by: Philippe Poulard | last post by:
I don't know if anybody already designed an URN scheme for XML; here is a proposal: I call it the "XML URN Scheme", or XUS. ========= URNs are logical names used to identify resources. XUS...
1
by: Simon Matthews | last post by:
Hope someone can help an Access beginner! I've just started keeping my surgical logbook on access and it's a simple flat-file affair. I have created several queries that will list cases...
6
by: Scott Nixon | last post by:
New to Postgres 7.3 from 7.0. Am having some trouble with a query that worked in 7.0 but not in 7.3.....can't seem to figure out the syntax or find info about how to do this anywhere. ...
0
by: gunimpi | last post by:
http://www.vbforums.com/showthread.php?p=2745431#post2745431 ******************************************************** VB6 OR VBA & Webbrowser DOM Tiny $50 Mini Project Programmer help wanted...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.