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非对称,一般化合物不含有手性中心

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

  1. Symmetrical Network Acceleration with EBS 12

    Andy Tremayne, my esteemed colleague and fellow blogger, has published a new whitepaper that discuss ...

  2. Leetcode 笔记 101 - Symmetric Tree

    题目链接:Symmetric Tree | LeetCode OJ Given a binary tree, check whether it is a mirror of itself (ie, s ...

  3. [LeetCode] Symmetric Tree 判断对称树

    Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For e ...

  4. intellij IDEA 出现“Usage of API documented as @since 1.6+”的解决办法

    问题 在导入java.io.console的时候出现"Usage of API documented as @since 1.6+"

  5. Disk Space Usage 术语理解:unallocated, unused and reserved

    通过standard reports查看Disk Usage,选中Database,右击,选择Reports->Standard Reports->Disk Space Usage,截图如 ...

  6. OpenCascade MeshVS Usage

    OpenCascade MeshVS Usage eryar@163.com Abstract. MeshVS means Mesh Visualization Service. It can be ...

  7. Symmetric Tree

    Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For e ...

  8. SYMMETRIC MULTIPROCESSORS

    COMPUTER ORGANIZATION AND ARCHITECTURE DESIGNING FOR PERFORMANCE NINTH EDITION As demands for perfor ...

  9. Usage: AddDimensionedImage imageFile outputFile eclipse 运行程序出错

    关于这个在eclipse中运行java程序的错,首先确认你的jdk,jre是否完整,并且与你的eclipse的位数相同,当然我相信这个错误大家应该都会去检查到. 第二个关于addDimensioned ...

随机推荐

  1. bzoj4419 发微博

    Description 刚开通的SH微博共有n个用户(1..n标号),在短短一个月的时间内,用户们活动频繁,共有m条按时间顺序的记录: ! x   表示用户x发了一条微博: + x y 表示用户x和用 ...

  2. [C#][MVC]DropDownListFor 默认值无法选中的 BUG

    本文来自:https://www.cnblogs.com/craze/p/6124575.html 关于mvc中@Html.DropDownListFor和@Html.DropDownList默认值无 ...

  3. stm32串口接收完整的数据包

    参考了文章:<stm32串口中断接收方式详细比较> 文章地址:http://bbs.elecfans.com/jishu_357017_1_1.html 借鉴了第四种中断方式 串口的配置这 ...

  4. 洛谷P1414 又是毕业季II

    题目背景 “叮铃铃铃”,随着高考最后一科结考铃声的敲响,三年青春时光顿时凝固于此刻.毕业的欣喜怎敌那离别的不舍,憧憬着未来仍毋忘逝去的歌.1000多个日夜的欢笑和泪水,全凝聚在毕业晚会上,相信,这一定 ...

  5. js判断当前为pc端还是wap端

    var checkBrowser; function browserRedirect() { var sUserAgent = navigator.userAgent.toLowerCase(); v ...

  6. Kubernetes 无法删除pod实例的排查过程

    今天在k8s集群创建pod时,执行了如下命令: #kubectl run busybox-service --image=busybox --replicas=3 但是在创建过程中pod既然失败了, ...

  7. Web 跨域请求(OCRS) 前端解决方案

    1.同源策略如下: URL 说明 是否允许通信 http://www.a.com/a.jshttp://www.a.com/b.js 同一域名下 允许 http://www.a.com/lab/a.j ...

  8. javascript日期相减,求时间差

    //计算时间差 var from_date = new Date(from_time); var end_date = new Date(end_time); var time_different = ...

  9. 本地git仓库常用操作

    SSH配置: 本机创建SSH key $ ssh-keygen -t rsa -C "youremail@example.com" 将SSHkey添加到git仓库:id_rsa.p ...

  10. leetcode268

    public class Solution { public int MissingNumber(int[] nums) { var list = nums.OrderBy(x => x).To ...