2027考研资料|百度网盘|下载 2027考研资料|百度网盘|下载资料全科都有2027考研资料政治英语数学专业课 PDFhttps://pan.quark.cn/s/a31e454490ae第 1 题 · 英语一The committee has met and ______ that the regulations should be changed.A. decidedB. decidingC. to decideD. decide答案A解析and 连接两个并列谓语has met and decided时态一致用过去分词 decided。第 2 题 · 英语一It is the first time that I ______ to Beijing.A. wasB. have beenC. had beenD. am答案B解析“It is the first time that…” 后用现在完成时 have been。若主句用 It was则从句用过去完成时 had been。第 3 题 · 英语二______ the problem is not easy, we should still try our best to solve it.A. AlthoughB. BecauseC. SinceD. As答案A解析前后句为转折关系用 Although 引导让步状语从句。BCD 都表因果。第 4 题 · 数学一设 f(x) ∫₀ˣ t·eᵗ dt则 f’(x) A. x·eˣB. eˣ x·eˣC. eˣD. x²·eˣ答案A解析变上限积分求导若 F(x) ∫₀ˣ f(t) dt则 F’(x) f(x)。此处 f(t) t·eᵗ故 f’(x) x·eˣ。第 5 题 · 数学一微分方程 y’’ - 5y’ 6y 0 的通解为 A. y C₁e²ˣ C₂e³ˣB. y C₁eˣ C₂e⁶ˣC. y eˣ(C₁ C₂x)D. y C₁e²ˣ C₂e⁻³ˣ答案A解析特征方程 r² - 5r 6 0解得 r₁2, r₂3。两个不等实根通解 y C₁e²ˣ C₂e³ˣ。第 6 题 · 数学二设矩阵 A [[1,2],[3,4]]则 |A| A. -2B. 2C. -1D. 1答案A解析二阶行列式 |A| 1×4 - 2×3 4 - 6 -2。第 7 题 · 数学三设随机变量 X ~ N(0,1)则 P(X 1.96) ≈ A. 0.025B. 0.05C. 0.95D. 0.975答案A解析标准正态分布P(X 1.96) 1 - Φ(1.96) ≈ 1 - 0.975 0.025。这是常用的 5% 显著性水平临界值。第 8 题 · 英语一The reason for his success is ______ he worked harder than anyone else.A. whyB. becauseC. thatD. for答案C解析“The reason…is that…” 用 that 引导表语从句不用 because避免语义重复。第 9 题 · 数学一级数 Σ(n1→∞) (-1)ⁿ/n 是 A. 绝对收敛B. 条件收敛C. 发散D. 无法判断答案B解析|(-1)ⁿ/n| 1/nΣ1/n 发散调和级数但 Σ(-1)ⁿ/n 收敛莱布尼茨判别法1/n 单调递减趋于0。故条件收敛。配套代码 · 考研英语长难句练习// 考研英语长难句结构分析器functionanalyzeSentence(sentence){constpatterns[{type:定语从句,markers:[who,which,that,whose,where,when]},{type:状语从句,markers:[although,because,since,while,if,unless]},{type:名词性从句,markers:[what,that,whether,how,why]},{type:非谓语,markers:[to do,doing,done,having done]},];constfound[];constlowersentence.toLowerCase();patterns.forEach(p{p.markers.forEach(m{if(lower.includes(m))found.push(${p.type}(${m}));});});returnfound.length0?found:[简单句];}constsentences[The book which he bought yesterday is very interesting.,Although he worked hard, he failed the exam.,What he said at the meeting surprised everyone.,Having finished his homework, he went out to play.,];sentences.forEach(sconsole.log(${analyzeSentence(s).join()}:${s.slice(0,40)}...));# 考研数学极限计算练习defcheck_limit(question,user_answer):检查极限计算题bank{lim(x→0) sin(3x)/x:{answer:3,method:等价无穷小 sin3x~3x},lim(x→0) (1-cosx)/x^2:{answer:1/2,method:等价无穷小 1-cosx~x²/2},lim(x→∞) (11/x)^x:{answer:e,method:重要极限公式},lim(x→0) (e^x-1)/x:{answer:1,method:等价无穷小 e^x-1~x},lim(x→0) tanx/x:{answer:1,method:等价无穷小 tanx~x},}itembank.get(question)ifnotitem:return题目不存在ifuser_answer.strip()item[answer]:returnf✓ 正确! 方法:{item[method]}returnf✗ 错误! 答案:{item[answer]}, 方法:{item[method]}tests[(lim(x→0) sin(3x)/x,3),(lim(x→0) (1-cosx)/x^2,1),(lim(x→∞) (11/x)^x,e),]forq,aintests:print(check_limit(q,a))!DOCTYPEhtmlhtmllangzhheadmetacharsetUTF-8title考研数学公式速查/titlestylebody{font-family:Arial,sans-serif;max-width:700px;margin:20px auto;}table{width:100%;border-collapse:collapse;margin:10px 0;}th, td{border:1px solid #ddd;padding:10px;}th{background:#1565C0;color:white;text-align:center;}td:first-child{background:#E3F2FD;font-weight:bold;width:120px;}.formula{font-family:Times New Roman,serif;font-style:italic;}/style/headbodyh3考研数学常用等价无穷小/h3tabletrth条件 x→0/thth等价无穷小/th/trtrtdsin x/tdtdclassformula~ x/td/trtrtdtan x/tdtdclassformula~ x/td/trtrtd1 - cos x/tdtdclassformula~ x²/2/td/trtrtdeˣ - 1/tdtdclassformula~ x/td/trtrtdln(1x)/tdtdclassformula~ x/td/trtrtd(1x)ᵅ - 1/tdtdclassformula~ αx/td/trtrtdarcsin x/tdtdclassformula~ x/td/trtrtdarctan x/tdtdclassformula~ x/td/tr/table/body/html