Nuprl Definition : awf_sum

awf_sum(n;s) ==
  fix((λawf_sum,n,s. case s
                     of inl(z) =>
                     z
                     inr(L) =>
                     if (n =z 0)
                     then 0
                     else eval in
                          accumulate (with value and list item s):
                           (awf_sum s)
                          over list:
                            L
                          with starting value:
                           0)
                     fi )) 
  
  s



Definitions occuring in Statement :  list_accum: list_accum callbyvalue: callbyvalue ifthenelse: if then else fi  eq_int: (i =z j) apply: a fix: fix(F) lambda: λx.A[x] decide: case of inl(x) => s[x] inr(y) => t[y] subtract: m add: m natural_number: $n
Definitions occuring in definition :  fix: fix(F) lambda: λx.A[x] decide: case of inl(x) => s[x] inr(y) => t[y] ifthenelse: if then else fi  eq_int: (i =z j) callbyvalue: callbyvalue subtract: m list_accum: list_accum add: m apply: a natural_number: $n
FDL editor aliases :  awf_sum

Latex:
awf\_sum(n;s)  ==
    fix((\mlambda{}awf$_{sum}$,n,s.  case  s
                                        of  inl(z)  =>
                                        z
                                        |  inr(L)  =>
                                        if  (n  =\msubz{}  0)
                                        then  0
                                        else  eval  m  =  n  -  1  in
                                                  accumulate  (with  value  x  and  list  item  s):
                                                    x  +  (awf$_{sum}$  m  s)
                                                  over  list:
                                                      L
                                                  with  starting  value:
                                                    0)
                                        fi  )) 
    n 
    s



Date html generated: 2016_05_15-PM-07_27_35
Last ObjectModification: 2015_09_23-AM-08_15_25

Theory : general


Home Index