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:
symmetrical, adj : 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”的更多相关文章
- Symmetrical Network Acceleration with EBS 12
		
Andy Tremayne, my esteemed colleague and fellow blogger, has published a new whitepaper that discuss ...
 - Leetcode 笔记 101 - Symmetric Tree
		
题目链接:Symmetric Tree | LeetCode OJ Given a binary tree, check whether it is a mirror of itself (ie, s ...
 - [LeetCode] Symmetric Tree 判断对称树
		
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For e ...
 - intellij IDEA 出现“Usage of API documented as @since 1.6+”的解决办法
		
问题 在导入java.io.console的时候出现"Usage of API documented as @since 1.6+"
 - Disk Space Usage 术语理解:unallocated, unused and reserved
		
通过standard reports查看Disk Usage,选中Database,右击,选择Reports->Standard Reports->Disk Space Usage,截图如 ...
 - OpenCascade MeshVS Usage
		
OpenCascade MeshVS Usage eryar@163.com Abstract. MeshVS means Mesh Visualization Service. It can be ...
 - Symmetric Tree
		
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center). For e ...
 - SYMMETRIC MULTIPROCESSORS
		
COMPUTER ORGANIZATION AND ARCHITECTURE DESIGNING FOR PERFORMANCE NINTH EDITION As demands for perfor ...
 - Usage: AddDimensionedImage imageFile outputFile  eclipse 运行程序出错
		
关于这个在eclipse中运行java程序的错,首先确认你的jdk,jre是否完整,并且与你的eclipse的位数相同,当然我相信这个错误大家应该都会去检查到. 第二个关于addDimensioned ...
 
随机推荐
- GC之五--SystemGC完全解读
			
目录: GC之一--GC 的算法分析.垃圾收集器.内存分配策略介绍 GC之二--GC日志分析(jdk1.8)整理中 GC之三--GC 触发Full GC执行的情况及应对策略 gc之四--Minor G ...
 - Java学习——Eclipse下载,java配置,新建,输入输出
			
Eclipse下载,java配置: 基本的软件是JDK,它可以编译.运行Java程序,下载地址是:https://www.oracle.com/technetwork/java/javase/dow ...
 - [转]MSSQL 判断临时表是否存在
			
原文来自:http://www.cnblogs.com/szfhquan/p/4229150.html 方法一: 1 if exists (select * from tempdb.dbo.sysob ...
 - selenium java-2 chrome driver与对应版本
			
chrome driver下载地址:https://npm.taobao.org/mirrors/chromedriver driver与chrome的对应关系: 1.进入最新的driver,查看no ...
 - display:inline block inline-block 的区别
			
原文地址:http://blog.csdn.net/jly036/article/details/5506182 display:block就是将元素显示为块级元素. block元素的特点是: 总是在 ...
 - 设置redis 密码
			
redis配置密码 1.通过配置文件进行配置 yum方式安装的redis配置文件通常在/etc/redis.conf中,打开配置文件找到 [plain] view plain copy require ...
 - 1005 Spell It Right (20 分)
			
1005 Spell It Right (20 分) Given a non-negative integer N, your task is to compute the sum of all th ...
 - html_常用技巧总结
			
============= 博客大全: 脚本之家:http://www.jb51.net/list/list_233_104.htm 红黑联盟: http://www.2cto.com/kf/yid ...
 - JS - 循环,条件if,switch,while
			
1.循环格式: 定义初始值 终止条件 // 1.将i的值写在里面 for(var i=0;i;i ++){ console.log(i); }// 2.也可以将i的值写在外面,分号必须还在 va ...
 - Static / Const 的概念
			
C/C++/Java Static / Const 的概念 这里以C为准,其他语言类似. Static变量是指分配不变(只可分配一次,以后再分配就无效了.)的变量 -- 它的存活寿命或伸展域可以贯穿程 ...