MathGroup Archive 2012

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

Search the Archive

Re: Simplify Binomial

  • To: mathgroup at smc.vnet.net
  • Subject: [mg127636] Re: Simplify Binomial
  • From: Bob Hanlon <hanlonr357 at gmail.com>
  • Date: Thu, 9 Aug 2012 03:52:23 -0400 (EDT)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • Delivered-to: l-mathgroup@wolfram.com
  • Delivered-to: mathgroup-newout@smc.vnet.net
  • Delivered-to: mathgroup-newsend@smc.vnet.net
  • References: <20120809013640.A3CF16843@smc.vnet.net>

Binomial[m + 1, n + 1]/Binomial[m, n] //
 FunctionExpand

(1 + m)/(1 + n)

Binomial[m, n + 1]/Binomial[m, n] //
 FunctionExpand

(m - n)/(1 + n)


Bob Hanlon


On Wed, Aug 8, 2012 at 9:36 PM, Themis Matsoukas <tmatsoukas at me.com> wrote:
> This works:
>
> FullSimplify[Binomial[m + 1, n + 1]/Binomial[m, n]]
>
> (1 + m)/(1 + n)
>
> but this doesn't:
>
> FullSimplify[Binomial[m, n + 1]/Binomial[m, n]]
>
> Binomial[m, 1 + n]/Binomial[m, n]
>
> How do I get Mathematica to simplify the last result to (m-n)/n?
>
> Thanks
>



  • Prev by Date: Re: How to Extract Conditional Expression?
  • Next by Date: Re: Text Alignment in Graphics[]
  • Previous by thread: Simplify Binomial
  • Next by thread: Re: Simplify Binomial