Skip to content

Commit 0e982d2

Browse files
committed
add categories of C*-algebras (unital / non-unital)
1 parent 2ba871a commit 0e982d2

File tree

4 files changed

+68
-0
lines changed

4 files changed

+68
-0
lines changed

database/data/001_categories/002_analysis.sql

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,26 @@ VALUES
3939
'https://ncatlab.org/nlab/show/Banach+algebra',
4040
NULL
4141
),
42+
(
43+
'C*Alg_nu',
44+
'category of non-unital C<sup>*</sup>-algebras',
45+
'$\mathbf{C^*Alg}_{nu}$',
46+
'non-unital C<sup>*</sup>-algebras',
47+
'non-unital $*$-algebra homomorphisms',
48+
'With "non-unital" we mean "not necessarily unital".',
49+
'https://ncatlab.org/nlab/show/C-star-algebra',
50+
NULL
51+
),
52+
(
53+
'C*Alg_u',
54+
'category of unital C<sup>*</sup>-algebras',
55+
'$\mathbf{C^*Alg}_{u}$',
56+
'unital C<sup>*</sup>-algebras',
57+
'unital $*$-algebra homomorphisms',
58+
NULL,
59+
'https://ncatlab.org/nlab/show/C-star-algebra',
60+
NULL
61+
),
4262
(
4363
'Meas',
4464
'category of measurable spaces',

database/data/001_categories/100_related-categories.sql

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,10 @@ VALUES
1919
('BanAlg_u', 'CVNA'),
2020
('BanAlg_u', 'BanAlg_nu'),
2121
('BanAlg_u', 'Alg(R)'),
22+
('BanAlg_u', 'C*Alg_u'),
2223
('BanAlg_nu', 'BanAlg_u'),
2324
('BanAlg_nu', 'Rng'),
25+
('BanAlg_nu', 'C*Alg_nu'),
2426
('B', 'FS'),
2527
('BG', 'BG_f'),
2628
('BG', 'BN'),
@@ -29,6 +31,12 @@ VALUES
2931
('BN', 'BG'),
3032
('BN', 'BOn'),
3133
('BOn', 'BN'),
34+
('C*Alg_u', 'C*Alg_nu'),
35+
('C*Alg_u', 'BanAlg_u'),
36+
('C*Alg_u', 'Alg(R)'),
37+
('C*Alg_nu', 'C*Alg_u'),
38+
('C*Alg_nu', 'BanAlg_nu'),
39+
('C*Alg_nu', 'Rng'),
3240
('CAlg(R)', 'Alg(R)'),
3341
('CAlg(R)', 'CRing'),
3442
('CAlg(R)', 'R-Mod'),
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
INSERT INTO category_property_assignments (
2+
category_id,
3+
property_id,
4+
is_satisfied,
5+
reason
6+
)
7+
VALUES
8+
-- TODO: add properties here
9+
(
10+
'C*Alg_nu',
11+
'inhabited',
12+
TRUE,
13+
'This is clear.'
14+
),
15+
(
16+
'C*Alg_nu',
17+
'skeletal',
18+
FALSE,
19+
'This is trivial.'
20+
);
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
INSERT INTO category_property_assignments (
2+
category_id,
3+
property_id,
4+
is_satisfied,
5+
reason
6+
)
7+
VALUES
8+
-- TODO: add properties here
9+
(
10+
'C*Alg_u',
11+
'inhabited',
12+
TRUE,
13+
'This is clear.'
14+
),
15+
(
16+
'C*Alg_u',
17+
'skeletal',
18+
FALSE,
19+
'This is trivial.'
20+
);

0 commit comments

Comments
 (0)