惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
J
Java Code Geeks
雷峰网
雷峰网
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
云风的 BLOG
云风的 BLOG
V
Visual Studio Blog
V
Vulnerabilities – Threatpost
S
Securelist
The Hacker News
The Hacker News
The Register - Security
The Register - Security
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Help Net Security
Help Net Security
G
Google Developers Blog
Hugging Face - Blog
Hugging Face - Blog
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
M
MIT News - Artificial intelligence
AI
AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Schneier on Security
Schneier on Security
N
Netflix TechBlog - Medium
T
The Blog of Author Tim Ferriss
Google DeepMind News
Google DeepMind News
Hacker News - Newest:
Hacker News - Newest: "LLM"
H
Hacker News: Front Page
博客园 - 司徒正美
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
B
Blog
Microsoft Azure Blog
Microsoft Azure Blog
大猫的无限游戏
大猫的无限游戏
Security Latest
Security Latest
Engineering at Meta
Engineering at Meta
N
News and Events Feed by Topic
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
酷 壳 – CoolShell
酷 壳 – CoolShell
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Threat Research - Cisco Blogs
U
Unit 42
V
V2EX
V2EX - 技术
V2EX - 技术
L
LINUX DO - 最新话题
aimingoo的专栏
aimingoo的专栏
Microsoft Security Blog
Microsoft Security Blog
Recorded Future
Recorded Future
P
Privacy & Cybersecurity Law Blog
美团技术团队
小众软件
小众软件
F
Fortinet All Blogs

社团活动 – 百品博客

暂无文章

高一数学错题分析 - 百品博客
MX文章作者勇敢打破裂缝,阳光就会洒满其中。 · 2021-02-11 · via 社团活动 – 百品博客

warning 说明
此为数学社社团作业,顺便发布于此。有些分析在dalao看来可能非常二,不喜勿喷。

一、公式代错

传说中有这样一个极其简单的公式:

但是,请看以下解题过程:

3 cos⁡(2x-π/4)
=-3 sin⁡(2x+π/4)
=3 sin⁡(-x+3π/4)
=3 sin⁡(-2x-π/4)
=-3sin⁡(2x+π/4)②

乍一看,貌似没什么问题。但是,如果将过程②分解,就易发现端倪:

首先,令

,代入公式①,易得

cos⁡(2x-π/4+π/2)=-sin⁡(2x-π/4)

整理得:

cos⁡(2x+π/4)=-sin⁡(2x-π/4)

发现问题了?公式①看似是用于过程②的第一个等号,但如果细究就会发现,根本得不出过程②的结果。现在,再把过程②的第一个等号拿来:

3 cos⁡(2x-π/4)=-3 sin⁡(2x+π/4)

对其使用公式:

令,

代入公式③,得

sin⁡(2x-π/4+π/2)=cos⁡(2x-π/4)

整理,两边同乘3,得

3 sin⁡(2x+π/4)=3cos⁡(2x-π/4)

这时,你会发现过程②的第一个等号是错的了。

为什么错?

这其实是不熟练的新手易发生的错误,如果规规矩矩地赋值代入公式,反而不会这样。为了防止发生这类错误,应知悉:

1.公式中的是指式子前一项(即要使用公式的那一项)

2.之后要输出哪一个名称(sin/cos/tan),公式就应以哪个名称开头

二、Δ﹥0?Δ﹤0?

请看这样一题:已知函数

的值域为R+,试问a的取值范围?

有些人是这样解的:

【解1】由题意

∆<0,
∴b²-4ac=a²-4<0
∴a∈(-2,2)

还有人这样解:

【解2】由题意得

∆≥0,
∴b²-4ac=a²-4≥0
∴a∈(-∞,-2)∪(2,+∞)

哪个是对的?画个图便知:

https://www.baipin.pw/wp-content/uploads/2021/02/021121_0312_1.png

它要值域为R+,即根号内要取得全体正数,无需管它会不会无意义(无意义的不取就是了),反正能取全体正数即可,所以【解2】才为正解。

那么【解1】是用来干什么的?如果把题改一下,【解1】就成为了正解:

已知函数

定义域为R,试问a的取值范围?

三、总结

今日所列这些题,看似极其简单,但若不留意,却可成为考卷上的扣分点。所谓”失之毫厘谬以千里”即为此。