MathGroup Archive 2007

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Limit of Floor function

  • To: mathgroup at smc.vnet.net
  • Subject: [mg73874] Re: Limit of Floor function
  • From: Bhuvanesh <lalu_bhatt at yahoo.com>
  • Date: Fri, 2 Mar 2007 06:38:32 -0500 (EST)

Hi,

Limit[Floor[x], x->10] is a one-sided limit. The Direction option is set to Automatic by default, which means Direction->-1 (from the right) except when the limit point is Infinity. Here's another example:

In[1]:= Limit[1/x, x->0]

Out[1]= Infinity

In[2]:= Limit[1/x, x->0, Direction->#]& /@ {-1, 1}

Out[2]= {Infinity, -Infinity}

Bhuvanesh,
Wolfram Research


  • Prev by Date: Re: change filename automatically in Export Command
  • Next by Date: Means
  • Previous by thread: Limit of Floor function
  • Next by thread: Re: Limit of Floor function