关系代数中交集的不同书写方式
使用基本运算符,导出附加运算符交集。
R ∩ S = ?
我认为可能是: (R ∪ S) - ((R -S) ∪ (S -R)) 但我也认为可能有更简单的方法吗?
Using basic operators, derive the additional operator intersection.
R ∩ S = ?
I thought it might be: (R ∪ S) - ((R -S) ∪ (S -R)) but I also think there might be an easier way of doing it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
A 与 B 相交等于 A - (A - B) 或等价 B - (B - A)
A intersected with B is equal to A - (A - B) or equivalenty B - (B - A)
R ∩ S
也等于~( (~R) ∪ (~S) )
其中
~A
是的补集一个
R ∩ S
is also equal to~( (~R) ∪ (~S) )
where
~A
is the complement ofA