Page 3-9

1 The Conjectures of Zarankiewicz and Hills

说明: 个人笔记, 勿过度参考.
正文

1.1 Drawings with Crossings

In his “Perplexities” column for The Strand Magazine, Henry Dudeney posed a puzzle he called “Water, Gas, and Electricity”, accompanied by the illustration in Figure 1.1. Is it possible, he asked, that A, B, and C each have access to (W) ater, (G)as, and (E)lectricity, without their paths crossing?

We would now answer that a solution would require a planar drawing of a K3,3 which we know to be impossible by Kuratowski’s theorem (Appendix A reviews the basics of topological graph theory).

笔记:
这是交叉数的起源问题, K3,3K_{3,3}K3,3​ 是否存在平面画法?简单的我们可以依据 Kuratowski’s theorem 知道不存在. 当然了,还可以借助一些平面图的不等式去证明.

那么, 何为 Kuratowski’s theorem

Kuratowski’s theorem
A finite graph is planar if and only if it does not contain a subgraph
that is a subdivision of K5 (the complete graph on five vertices)
or of K3,3 (complete bipartite graph on six vertices)

注:上述定理图的subdivision 定义:
In general, a subdivision of a graph G (sometimes known as an expansion[1]) is a graph resulting from the subdivision of edges in G. The subdivision of some edge e with endpoints {u,v} yields a graph containing one new vertex w, and with an edge set replacing e by two new edges, {u,w} and {w,v}.
For example, the edge e, with endpoints {u,v}:

can be subdivided into two edges, e1 and e2, connecting to a new vertex w:

图的subdivision 是描述图论意义下图的同胚的含义的核心工具.
two graphs GGG andG′G'G′ are homeomorphic if there is a graph isomorphism from some subdivision of GGG to some subdivision of G′G'G′.

Henry Dudeney 也意识到这一点,于是他提供了另外一个次一点的方案。

显然: 这是一种退而求其次的办法,虽然各条路的确不交叉了,可是
c和 w 的路经过了A. 这也不符合愿意.
为了避免一些规定上不同导致的没必要的歧义,书本事先给出了详细的公认的规定。

正文

  1. In a drawing of a graph, every vertex is assigned a different location, and edges are drawn as simple curves between the locations assigned to their end-points.
    每个顶点放在不同位置.

  2. If two edges intersect finitely often, and an edge does not contain a point in its interior, then intersections between two curves are either a common endpoint, a crossing, or a touching point.
    边与边的交点分为3类. 第二类是本书重点研究的.

  3. A drawing is normal, if every pair of edges has at most a finite number of intersections, there are no touching intersections, and no crossing belongs to more than two edges. We will always assume that drawings are normal, unless clearly stated otherwise.

要求: 1. 两条交叉的边交叉次数是有限的;
2 不存在 touching point
3 交叉点只能属于两条边. 不存在三条或者更多共一个交叉点.

Remark 1.1. Why do we not allow more than two edges crossing in a point? A possible answer is not necessary: ​​if k edges cross at the intersections (between two pairs of edges), and the same amount can be reached by slightly perturbing the edges (as observed by Tait [330] in 1877, see also Lemma A.23) If we want to count the points where multiple edges intersect as a single intersection, we get the concept of degenerate intersection number, which is the subject we do not pursue [248].

笔记:
如果 kkk 条边共一个顶点, 那么我可以视为 kkk 条边 两两相交退化情形,这是可以通过微小的调整做到的(Lemma A.23, 这种情况我们可以规避掉.

A drawing is good if edges do not have self-crossings (they are simple curves), and every pair of edges has at most one intersection (including a shared endpoint). In particular, adjacent edges do not cross, and independent edges cross at most once.
即下面三种不存在.


Normal 画法第三类图可以出现,因为他要求地是有限次即可.

正文:

Definition 1.2 (Crossing Number).
The crossing number, cr(D), of a drawing D is the number of crossings in D.
The crossing number, cr(G), of a graph G is the smallest cr(D) of any drawing D of G. We say a drawing D of G is cr-minimal, or that D realizes cr(G), if cr(D) = cr(G).

Lemma 1.3. I
If a drawing is not good, we can redraw it so it becomes good, the crossing number of the drawing decreases, and redrawn edges are routed arbi-trarily close to edges of the original drawing. In particular, every cr-minimal drawing of a graph is good.

笔记:
Lemma 1.3. 说明下面道理。 如何把不好的画法变成好的画法。
如果图不是好画法,我们可以对其进行重新绘制,使其变得良好,使得图的交叉数减少,并且重新绘制的边沿任意方向布线,十分接近原始图的边。 特别是,每个 cr 最小的图形绘制都是好的。

Proof. Suppose D is a drawing of G which is not good.

  1. If D has a self-crossing, it can be removed by locally rerouting the edge close to the self-crossing; see Figure 1.3. (We could also short-cut the edge at the self-crossing; this is fine for the purposes of this proof, but sometimes we need to keep all pieces of an edge to satisfy some other condition.)

    自环消除,两种方法,一种自然非常近的分开,第二种直接去掉,如下图所示:但是有时候为了保证边的曲线尽可能都保存不被损坏,采用第一种.


2.

Crossing Number of Graphs 读书笔记相关推荐

  1. 《谱图论》读书笔记(第一章)

    目录 Chapter 1. 特征值和图的拉普拉斯算子 1.1 介绍 1.2 拉普拉斯算子和特征值 1.3 Basic facts about the spectrum of Graph 1.4 Eig ...

  2. 《JavaScript面向对象精要》读书笔记

    JavaScript(ES5)的面向对象精要 标签: JavaScript 面向对象 读书笔记 2016年1月16日-17日两天看完了<JavaScript面向对象精要>(参加异步社区的活 ...

  3. pro git读书笔记

    pro git读书笔记 起步 三种区域以及三种状态 Git 项目有三个工作区域的概念:工作目录,暂存区域以及Git 仓库 工作目录是我们用来修改文件的目录,是对项目的某个版本独立提取出来的内容 暂存区 ...

  4. Java 内存分配——Thinking in Java 4th 读书笔记

    做开发多年,一直忙于项目,从没好好的整理知识,从现在开始,尽量每周多抽时间整理知识,分享在博客,在接下来的博客中,我将为大家分享我读<Java编程思想4th>英文版读书笔记,一来便于知识的 ...

  5. Oracle PL/SQL 程序设计读书笔记 - 第7章 使用数据

    Oracle PL/SQL 程序设计读书笔记 - 第7章 使用数据 Oracle PL/SQL 程序设计读书笔记 - 第7章 使用数据 7.1 程序数据的命名 PL/SQL要求在给数据结构命名的时候应 ...

  6. 《Deep Learning With Python second edition》英文版读书笔记:第十一章DL for text: NLP、Transformer、Seq2Seq

    文章目录 第十一章:Deep learning for text 11.1 Natural language processing: The bird's eye view 11.2 Preparin ...

  7. python基础学习[python编程从入门到实践读书笔记(连载一)]

    写在前面:本文来自笔者关于<python编程从入门到实践>的读书笔记与动手实践记录. 程序员之禅 文章目录 02变量和简单数据类型 03 列表简介 04 操作列表 05 if语句 06 字 ...

  8. Go语言实战读书笔记

    2019独角兽企业重金招聘Python工程师标准>>> Go语言实战读书笔记 第二章 通道(channel).映射(map)和切片(slice)是引用类型.引用类型的对象需要使用ma ...

  9. 读书笔记:锋利的JQuery

    本文首发于我的个人博客:cherryblog.site/ 最近开启了阅读源码之旅,有兴趣的童靴可以持续关注,这几天再看 Zepto.js 的源码,估计博文过几天就会出来~另外,买的十几本书陆陆续续的在 ...

最新文章

  1. 学习 JS navigator 对象
  2. php 正确的输出json格式
  3. 【Python基础】python必会的10个知识点
  4. 函数--函数的快速体验
  5. DAY5-小别-2018-1-15
  6. iOS开发UI篇—核心动画(基础动画)
  7. SQL存储过程:取出自定义条数的数据
  8. NumPy Cookbook 带注释源码 四、连接 NumPy 与 剩余世界
  9. iOS内存分配五大区:
  10. android 如何快速检测到画面变化_电瓶修复—如何快速检测电池的好坏2
  11. IE8 SVG Viewer下一些对象属性和方法
  12. Lightning 转 USB Type-A/Type-C 思路
  13. 企业微信代开发获取应用Secret
  14. 桃李春风一杯酒,江湖夜雨十年灯。
  15. 2016年民营企业500强榜单(全国工商联发布)
  16. 关于cocoapods遇到xxxx file not found和No such module 'XXX'的问题
  17. nginx如何解析html响应,在nginx中,如何返回http 500返回码并包含响应客户端的响应体...
  18. 将网络url图片链接转换为File类型对象
  19. 成为一名专业Web渗透工程师难吗?
  20. API 开放接口设计之 appId,appSecret,accessToken (同微信开发平台接口)

热门文章

  1. IBM z15揭开面纱,多项业界首创技术护航混合多云安全
  2. vs code对python开发相关的设置
  3. 机器学习:几种常见的学习方法
  4. python内置函数bin,Python内置函数bin() oct()等实现进制转换
  5. 学校远程预付费抄表系统智能化水电管理利器
  6. 景安服务器做网站seo怎样,虚拟主机和SEO优化的关系很大吗?景安
  7. 借款久期还款久期 简述
  8. win7怎么设置计算机的性能,windows7旗舰版电脑如何为电脑设置高性能计划
  9. 三种经典图像滤波方法介绍——双边滤波(Bilateral filter)、导向滤波(Guided Fliter)、滚动导向滤波(RollingGuidedFilter)
  10. 4G LTE频带划分和国内运行商资源分配