Re: Limiting the results
- To: mathgroup at smc.vnet.net
 - Subject: [mg40072] Re: Limiting the results
 - From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
 - Date: Tue, 18 Mar 2003 05:50:35 -0500 (EST)
 - Organization: Universitaet Leipzig
 - References: <b51a67$336$1@smc.vnet.net>
 - Reply-to: kuska at informatik.uni-leipzig.de
 - Sender: owner-wri-mathgroup at wolfram.com
 
Hi,
Select[Flatten[Table[{x, y, x == y/3}, {x, 0, 9}, {y, 0, 9}], 1],
Last[#] &]
Regards
  Jens
GeRaLt wrote:
> 
> Equation: x=y/3
> and i want both variables to be for example digits (integers 0,1...9)
> How to solve it? (so that it returns pairs (0,0),(1,3),(2,6),(3,9))