证明Lazebnik-Ustimenko猜想:D(k,q)的girth当k+5为特征数幂时

0 下载量 77 浏览量 更新于2024-08-29 收藏 424KB PDF 举报
本文讨论的主题是"On the girth of the bipartite graph D(k, q)",这是一篇发表在《离散数学》(Discrete Mathematics)期刊上的研究论文,发表于2014年第335期。作者Xiaoyan Cheng、Wenbing Chen和Yuansheng Tang来自中国扬州大学数学科学学院,他们的研究关注的是特定类型的图论问题——二分图D(k, q)的周长(girth)。 二分图D(k, q)是由Lazebnik和Ustimenko在1995年引入的一种特殊结构,它至少具有k+4作为最小环长。Füredi及其合作者在1995年的研究中表明,当k为奇数且q为形如1+n(k+5)/2的质数幂时,D(k, q)的周长实际上是k+5。他们进一步提出了一个猜想,即对于所有奇数k和q(至少为4),D(k, q)的周长总是k+5。 本文的贡献在于证明了当(k+5)/2是Fq(有限域,通常表示为素数幂次的特征)的幂时,这个猜想是正确的。这是一项关于图的性质与域理论结合的重要结果,特别是在处理这类代数图(algebraic graphs),它们在自动机、群论和编码理论等领域具有潜在的应用价值。作者通过深入分析二分图D(k, q)的对称性,如边对称(edge-transitive)性和其自同构群(automorphism group),来推进了这一领域的理论进展。 在整个论文中,作者可能会探讨如何利用群论和代数方法来确定图的结构,以及如何利用这些结构来计算或证明关于周长的性质。他们可能还讨论了之前研究中的关键步骤和方法,以及为何在特定条件下可以推翻猜想,证明更广泛的结论。由于这篇论文主要关注的是数学证明和技术细节,因此深入的讨论可能涉及代数几何、线性代数和组合数学等多个领域。 总结来说,本文是一篇重要的研究工作,它不仅解答了一个重要的图论猜想,而且还展示了如何将数论、群论和图论结合起来解决复杂的问题,为二分图的理论研究提供了新的洞察。

C++Write a program that will prepare a shipping label and determine the cost for a box of any size and mass. five attributes: type double length, width, height, mass, price six attributes: type string senderName, receiverName, senderAddress, receiverAddress, originCountry, destinationCountry (you can shorten names if you like, just make a comment about their meaning) a default constructor – basic initial values for all parameters a user constructor – input sender Name, senderAddress, originCountry a double function volume() – a function to return l×w×h a double function surfArea() – a function to return 2×(l×w+l×h+w×h) a double function girth() – a function to return the perimeter for the two smallest dimensions P=2(x+y), where x and y are the two smalles of l,w,h a double function maxDim() – a function to return the largest dimension from l,w,h a double function pricing() – a function to return the shipping price based on the table above an operator+ function – a function that determines the total cost of shipping (return type double).... (you may decide how to calculate.... a) add prices from both packages, b) apply fee or discount for number of packages) an operator>> function – a function to get the information from the user about the package.... OR.... a set of “ask” functions to ask the same information an operator<< function – a function to type the information in the shipping label format.... OR.... a set of “print” functions – to print the same information

2023-06-01 上传