Nuprl Definition : tuple-sum

tuple-sum(f;L;x) ==
  if null(L) then else let a,as in if null(as) then else let u,v in (f u) tuple-sum(f;as;v) fi  fi 



Definitions occuring in Statement :  null: null(as) ifthenelse: if then else fi  apply: a spread: spread def add: m natural_number: $n
Definitions occuring in definition :  natural_number: $n ifthenelse: if then else fi  null: null(as) spread: spread def add: m apply: a
FDL editor aliases :  tuple-sum

Latex:
tuple-sum(f;L;x)  ==
    if  null(L)
    then  0
    else  let  a,as  =  L 
              in  if  null(as)  then  f  a  x  else  let  u,v  =  x  in  (f  a  u)  +  tuple-sum(f;as;v)  fi 
    fi 



Date html generated: 2019_06_20-PM-02_03_19
Last ObjectModification: 2019_02_22-AM-10_54_03

Theory : tuples


Home Index