Application module: Set theory | ISO/TS 10303-1210:2004(E) © ISO |
This clause specifies the information requirements for the Set theory application module. The information requirements are specified as the Application Reference Model (ARM) of this application module.
NOTE 1 A graphical representation of the information requirements is given in Annex C.
NOTE 2 The mapping specification is specified in 5.1. It shows how the information requirements are met by using common resources and constructs defined or imported in the MIM schema of this application module.
The following EXPRESS specification begins the Set_theory_arm schema and identifies the necessary external references.
EXPRESS specification:
*)
SCHEMA Set_theory_arm;
(*
The following EXPRESS interface statement specifies the elements imported from the ARM of another application module.
EXPRESS specification:
*)
USE FROM
Class_arm;
--
ISO/TS 10303-1070
(*
NOTE 1 The schemas referenced above are specified in the following part of ISO 10303:
Class_arm ISO/TS 10303-1070
NOTE 2 See Annex C, Figures C.1and C.2 for a graphical representation of this schema.
This subclause specifies the ARM entities for this module. Each ARM application entity is an atomic element that embodies a unique application concept and contains attributes specifying the data elements of the entity. The ARM entities and definitions are specified below.
EXPRESS specification:
*)
ENTITY Complement;
id : STRING;
name : STRING;
description : STRING;
set_1 : Class;
set_2 : Class;
universe : Class;
END_ENTITY;
(*
Attribute definitions:
id: an identifier for the Complement relationship.
name: the word or sequence of words by which the Complement relationship is referenced.
description: the text that provides further information about the Complement relationship.
set_1: the Class that has set_2 as its complement within universe.
set_2: the Class that has set_1 as its complement within universe.
universe: the Class that is the union of set_1 and set_2.
that indicates set R consists of each thing that is a member of each set within {Si}.
EXPRESS specification:
*)
ENTITY Intersection;
id : STRING;
name : STRING;
description :
OPTIONAL
STRING;
operand : SET[2:?] OF Class;
resultant : Class;
END_ENTITY;
(*
Attribute definitions:
id: an identifier for the Intersection relationship.
name: the word or sequence of words by which the Intersection relationship is referenced.
description: the text that provides further information about the Intersection relationship. The value of the attribute need not be specified.
operand: the set of sets that have the resultant as their intersection.
resultant: the set that consists of each thing that is a member of each set within operand.
EXPRESS specification:
*)
ENTITY Power_set;
id : STRING;
name : STRING;
description :
OPTIONAL
STRING;
base : Class;
derived : Class;
END_ENTITY;
(*
Attribute definitions:
id: an identifier for the Power_set relationship.
name: the word or sequence of words by which the Power_set relationship is referenced.
description: the text that provides further information about the Power_set relationship. The value of the attribute need not be specified.
base: the set that is the union of the derived.
derived: the set of all subsets of the base.
EXPRESS specification:
*)
ENTITY Proper_subset;
id : STRING;
name : STRING;
description :
OPTIONAL
STRING;
subset : Class;
superset : Class;
END_ENTITY;
(*
Attribute definitions:
id: an identifier for the Proper_subset relationship.
name: the word or sequence of words by which the Proper_subset relationship is referenced.
description: the text that provides further information about the Proper_subset relationship. The value of the attribute need not be specified.
subset: the Class that contains only members of superset.
superset: the Class that contains all members of subset.
that indicates the sets have the same members, that is they are equal.
EXPRESS specification:
*)
ENTITY Same_membership;
id : STRING;
name : STRING;
description :
OPTIONAL
STRING;
set_1 : Class;
set_2 : Class;
END_ENTITY;
(*
Attribute definitions:
id: an identifier for the Same_membership relationship.
name: the word or sequence of words by which the Same_membership relationship is referenced.
description: the text that provides further information about the Same_membership relationship. The value of the attribute need not be specified.
set_1: the class that contains the same members as set_2.
set_2: the class that contains the same members as set_1.
NOTE Set A may be equal to set B.
EXPRESS specification:
*)
ENTITY Subset;
id : STRING;
name : STRING;
description :
OPTIONAL
STRING;
subset : Class;
superset : Class;
END_ENTITY;
(*
Attribute definitions:
id: an identifier for the Subset relationship.
name: the word or sequence of words by which the Subset relationship is referenced.
description: the text that provides further information about the Subset relationship. The value of the attribute need not be specified.
subset: the class that contains only members of superset.
superset: the class that contains all members of subset.
EXPRESS specification:
*)
ENTITY Union;
id : STRING;
name : STRING;
description :
OPTIONAL
STRING;
operand : SET[2:?] OF Class;
resultant : Class;
END_ENTITY;
(*
Attribute definitions:
id: an identifier for the Union relationship.
name: the word or sequence of words by which the Union relationship is referenced.
description: the text that provides further information about the Union relationship. The value of the attribute need not be specified.
operand: the set of sets that have the resultant as their union.
resultant: the set that consists of each thing that is a member of any set within operand.
*)
END_SCHEMA; -- Set_theory_arm
(*
© ISO 2004 — All rights reserved