File: test_set_theory.mac

package info (click to toggle)
maxima 5.21.1-2squeeze
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 94,928 kB
  • ctags: 43,849
  • sloc: lisp: 298,974; fortran: 14,666; perl: 14,325; tcl: 10,494; sh: 4,052; makefile: 2,975; ansic: 471; awk: 24; sed: 7
file content (30 lines) | stat: -rw-r--r-- 1,203 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* Original version of this file copyright 1999 by Michael Wester,
 * and retrieved from http://www.math.unm.edu/~wester/demos/SetTheory/problems.macsyma
 * circa 2006-10-23.
 *
 * Released under the terms of the GNU General Public License, version 2,
 * per message dated 2007-06-03 from Michael Wester to Robert Dodier
 * (contained in the file wester-gpl-permission-message.txt).
 *
 * See: "A Critique of the Mathematical Abilities of CA Systems"
 * by Michael Wester, pp 25--60 in
 * "Computer Algebra Systems: A Practical Guide", edited by Michael J. Wester
 * and published by John Wiley and Sons, Chichester, United Kingdom, 1999.
 */
/* ----------[ M a c s y m a ]---------- */
/* ---------- Initialization ---------- */
showtime: all$
prederror: false$
/* ---------- Set Theory ---------- */
x: '[a, b, b, c, c, c]$
y: '[d, c, b]$
z: '[b, e, b]$
/* [x \/ y \/ z, x /\ y /\ z] => [{a, b, c, d, e}, {b}] */
[union(x, y, z), intersect(x, y, z)];
/* x \/ y \/ z - x /\ y /\ z => {a, c, d, e} */
setdifference(%[1], %[2]);
remvalue(x, y, z)$
/* Cartesian product of sets => {(a, c), (a, d), (b, c), (b, d)} */
apply('append, outermap("[", [a, b], [c, d]));
/* ---------- Quit ---------- */
quit();