MathGroup Archive 2005

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

Search the Archive

Re: integer solution

  • To: mathgroup at smc.vnet.net
  • Subject: [mg62004] Re: [mg61988] integer solution
  • From: Bob Hanlon <hanlonr at cox.net>
  • Date: Wed, 9 Nov 2005 03:45:19 -0500 (EST)
  • Reply-to: hanlonr at cox.net
  • Sender: owner-wri-mathgroup at wolfram.com

{s,d,t,q}/.{Reduce[{
          s+d+t+q==10,
          6s+3d+2t+q==30,
          s>0,d>0,t>0,q>0},
        {s,d},Integers]//ToRules}

{{1, 7, 1, 1}, {2, 3, 4, 1}, {2, 4, 2, 2}, {3, 1, 3, 3}, {3, 2, 1, 4}}


Bob Hanlon

> 
> From: bd satish <bdsatish at gmail.com>
To: mathgroup at smc.vnet.net
> Date: 2005/11/08 Tue AM 03:41:30 EST
> Subject: [mg62004] [mg61988] integer solution
> 
> 
>  I want to find the integral solutions of the following two equations:
>    s + d + t+q =10 ; # two equations
>   6s + 3d + 2t + q = 30 ; # 4 unknowns
>   I want only those solutions for which
>   s>0 d>0 t>0 q>0
> 
> 


  • Prev by Date: Re: integer solution
  • Next by Date: Re: integer solution
  • Previous by thread: Re: integer solution
  • Next by thread: Re: integer solution