Re: Creating a set from two other sets
- To: mathgroup at smc.vnet.net
- Subject: [mg84774] Re: Creating a set from two other sets
- From: "Steve Luttrell" <steve at _removemefirst_luttrell.org.uk>
- Date: Sun, 13 Jan 2008 06:26:22 -0500 (EST)
- References: <fmcqap$ga0$1@smc.vnet.net>
In[1]:= Outer[#1/#2&,{0,1,2,3,4},{-1,1,2,3}] Out[1]= {{0,0,0,0},{-1,1,1/2,1/3},{-2,2,1,2/3},{-3,3,3/2,1},{-4,4,2,4/3}} Stephen Luttrell West Malvern, UK <ahallam at iastate.edu> wrote in message news:fmcqap$ga0$1 at smc.vnet.net... > So I would like to create a set AB which consists of all ratios a/b > where a is an element of {0,1,2,3,4} and b is an element of > {-1,1,2,3}. Table does not seem to let me use elements of a set as > compared to sequential lists. > > Any ideas? > >