Nuprl Definition : combinations_aux

combinations_aux(b;n;m) ==
  fix((λcombinations_aux,b,n,m. if (n =z 0)
                               then b
                               else eval b2 in
                                    eval n2 in
                                    eval m2 in
                                      combinations_aux b2 n2 m2
                               fi )) 
  
  
  m



Definitions occuring in Statement :  callbyvalue: callbyvalue ifthenelse: if then else fi  eq_int: (i =z j) apply: a fix: fix(F) lambda: λx.A[x] multiply: m subtract: m natural_number: $n
Definitions occuring in definition :  fix: fix(F) lambda: λx.A[x] ifthenelse: if then else fi  eq_int: (i =z j) multiply: m callbyvalue: callbyvalue subtract: m natural_number: $n apply: a
FDL editor aliases :  combinations_aux

Latex:
combinations\_aux(b;n;m)  ==
    fix((\mlambda{}combinations$_{aux}$,b,n,m.  if  (n  =\msubz{}  0)
                                                            then  b
                                                            else  eval  b2  =  b  *  m  in
                                                                      eval  n2  =  n  -  1  in
                                                                      eval  m2  =  m  -  1  in
                                                                          combinations$_{aux}$  b2  n2  m2
                                                            fi  )) 
    b 
    n 
    m



Date html generated: 2016_05_15-PM-05_57_19
Last ObjectModification: 2015_09_23-AM-08_00_19

Theory : general


Home Index