Usage of “symmetrical” and “symmetric”

What is the appropriate usage of "symmetrical" and "symmetric" (using the geometrical adjectival definition of both terms)? Are they synonymous?

Dictionary:

Merriam-Webster lists symmetric as being a variant of symmetrical, which is the ‘official‘ dictionary entry:

symmetricaladj : 1 : having or involving symmetry : exhibiting symmetry : exhibiting correspondence in size and shape of parts : BALANCED, REGULAR {the human body issymmetrical} {crystals are often symmetrical} {a symmetrical garden} {a symmetricalgrouping}

Discussion:

Sam Lisi:  At least in a mathematical context, I think "symmetric" is far more common. For one thing, there are many technical terms where "symmetric" is the correct choice (e.g. "symmetric space", "symmetric relation", "symmetric group"). I can‘t think of any technical term including "symmetrical".

user16269: "Symmetrical" is a non-technical term, to describe any object that has symmetry; for example, a human face. "Symmetric" means "relating to symmetry", and is also used in a number of technical mathematical contexts (see Sam Lisi‘s comment under the question).

JLG: I don‘t agree with symmetrical being a nontechnical term. Dorland‘s Medical Dictionary lists only "symmetrical," and the definition is: "pertaining to or exhibiting symmetry; in chemistry, denoting compounds which contain atoms or groups at equal intervals in the molecule." (Sounds technical to me.)

naught101:mitch, because symmetric is defined as "symmetrical" - I assume that‘s supposed to mean it‘s a perfect synonym.

mitch: naught101: 1) there are no perfect synonyms. Ever. And a crowd sourced definition ain‘t gonna specify enough to judge. 2) wiktionary is not definitive. Don‘t take anything it says as gospel or draw logical conclusions from it. Frankly the same could be said for the OED, but wiktionary is not written by people who have spent a long time judging such things.

Related: 

“electric” vs. “electrical”“symbolic” vs. “symbolical”“scientific” vs. “scientifical”,

and the most excellent general discussion Why is it “geometric” but “theoretical”?

asymmetric and unsymmetrical :http://emuch.net/html/201206/4592142.html

asymmetric是不对称,一般化合物含义手性中心,unsymmetrical非对称,一般化合物不含有手性中心

时间: 2024-08-11 07:38:05

Usage of “symmetrical” and “symmetric”的相关文章

LeetCode:Symmetric Tree - 判断二叉树是否对称

1.题目名称 Symmetric Tree(判断二叉树是否对称) 2.题目地址 https://leetcode.com/problems/symmetric-tree/ 3.题目内容 英文:Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). 中文:给定一颗二叉树,检查它是否与自己的镜像是同一棵树(即围绕根节点对称). 4.解题方法 本题与题目"Same Tr

[Leetcode] Symmetric tree 对称二叉树

Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For example, this binary tree is symmetric: 1 / 2 2 / \ / 3 4 4 3 But the following is not: 1 / 2 2 \ 3 3 Note: Bonus points if you could solve it both rec

sharepoint 2013 开启 Usage and Health Data Collection

Usage and Health Data Collection Monitoring the status of your farm's health is a critical aspect of SharePoint administration. This service application collects the various logging information stored in SharePoint and writes it to the logging databa

LeetCode 101 Symmetric Tree (C)

题目: 101. Symmetric Tree QuestionEditorial Solution My Submissions Total Accepted: 135232 Total Submissions: 375037 Difficulty: Easy Contributors: Admin Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For

Symmetric Tree leetcode

Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For example, this binary tree is symmetric: 1 / 2 2 / \ / 3 4 4 3 But the following is not: 1 / 2 2 \ 3 3 看到这个题首先想到的是中序遍历,遍历结果是否是前后相同,也就是是否是“回文”,我使用了一个栈,遍历

[转]Disk Space Usage and SQL Server Performance

Disk Space Usage and SQL Server Performance By Gregory A. Larsen When you think of SQL Server performance components, you think of the usage of CPU, memory, and the I/O it takes to process a query. However, there is another component you should consi

CSS减肥的工具–Firefox插件 CSS Usage

首先,我们需要安装Firefox(猛击此处下载),或者确定你已经安装的版本已经高于3.1; 第二步,安装前端开发人员最普及的开发工具 Firebug: 第三步,安装CSS Usage 0.3.4.1: 第四步,在浏览器中打开我们要优化的页面(本地的页面也可以),点击右下角的firebug小图标,打开firebug工具窗口,我们会看到在工具选项中我们有一个 CSS Usage工具的按钮. 首先我们来分析最上面的三个功能按钮的使用 Scan: 通过字面意思我们就能知道,这是一个扫描当前页面的工具,如

LeetCode -- Symmetric Tree

Question: Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For example, this binary tree is symmetric: 1 / 2 2 / \ / 3 4 4 3 But the following is not: 1 / 2 2 \ 3 3 Note:Bonus points if you could solve it

[LeetCode][Java] Symmetric Tree

题目: Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For example, this binary tree is symmetric: 1 / 2 2 / \ / 3 4 4 3 But the following is not: 1 / 2 2 \ 3 3 题意: 给定一棵二叉树,判定它是否是自己的一个镜像(即 关于它的中心对称) 比如下面这课二