Nuprl Definition : cubic_converge2

cubic_converge2(a;b;k;m)
==r if m ≤b
    then 0
    else if m=2  then k  else eval iroot(3;m) in eval cubic_converge2(a;b;k;r) in   1
    fi 

cubic_converge2(a;b;k;m) ==
  fix((λcubic_converge2,m. if m ≤b
                          then 0
                          else if m=2  then k  else eval iroot(3;m) in eval cubic_converge2 in   1
                          fi )) 
  m



Definitions occuring in Statement :  le_int: i ≤j callbyvalue: callbyvalue ifthenelse: if then else fi  int_eq: if a=b  then c  else d apply: a fix: fix(F) lambda: λx.A[x] multiply: m add: m natural_number: $n iroot: iroot(n;x)
Definitions occuring in definition :  natural_number: $n add: m apply: a callbyvalue: callbyvalue iroot: iroot(n;x) int_eq: if a=b  then c  else d multiply: m le_int: i ≤j ifthenelse: if then else fi  lambda: λx.A[x] fix: fix(F)
FDL editor aliases :  cubic_converge2
Latex:
cubic\_converge2(a;b;k;m)
==r  if  a  *  m  \mleq{}z  b
        then  0
        else  if  m=2
                        then  k
                        else  eval  r  =  iroot(3;m)  +  1  in
                                  eval  n  =  cubic\_converge2(a;b;k;r)  in
                                      n  +  1
        fi 


Latex:
cubic\_converge2(a;b;k;m)  ==
    fix((\mlambda{}cubic$_{converge2}$,m.  if  a  *  m  \mleq{}z  b
                                                  then  0
                                                  else  if  m=2
                                                                  then  k
                                                                  else  eval  r  =  iroot(3;m)  +  1  in
                                                                            eval  n  =  cubic$_{converge2}$  r  in
                                                                                n  +  1
                                                  fi  )) 
    m



Date html generated: 2016_10_26-PM-00_22_21
Last ObjectModification: 2016_10_10-PM-04_02_09

Theory : reals_2


Home Index