一道叙述有误的模拟题

这是2013年昌平区二模的压轴题:

如果函数 $y=f(x)$ 的定义域为 $\bf R$,对于定义域内的任意 $x$,存在实数 $a$ 使得 $f(x+a)=f(-x)$ 成立,则称此函数具有“$P(a)$ 性质”.

(1) 判断函数 $y=\sin x$ 是否具有“$P(a)$ 性质”,若具有“$P(a)$ 性质”,求出所有的 $a$ 的值;若不具有“$P(a)$ 性质”,请说明理由;

(2) 设函数 $y=g(x)$ 具有“$P(\pm 1)$ 性质”,且当 $-\dfrac 12\leqslant x \leqslant \dfrac 12$ 时,$g(x)=|x|$.若 $y=g(x)$ 与 $y=mx$ 的交点个数为 $2013$,求 $m$ 的值.

按照题目的叙述“对于定义域内的任意 $x$,存在实数 $a$ …”,说明当 $x$  变化时,实数 $a$ 是有随之变化的余地的,然而引入“$P(a)$ 性质”这一说法,又使得 $a$ 不再具有变化的空间.这样的话,不如直接叙述为“存在实数 $a$,使得对于定义域内的任意 $x$ …”来的简单自然.

问题到这里还算不上是错误,关键在于第二问.第二问中  $\pm 1$,也就是 $1$ 或 $-1$,使得 $a$ 有了变化的可能,结合题干中对“$P(a)$ 性质”的描述会使得问题变得极为复杂.换句话说,对于定义域内的 $x$,只要 $g(x+1)=g(-x) $ 和 $g(x-1)=g(-x)$ 中有至少一个成立即可.然而参考答案中认为 $g(x+1)=g(-x) $ 和 $g(x-1)=g(-x)$ 两者都是对任意定义域内的 $x$ 恒成立的.那么按照参考答案的说法,应该将题目条件改为“设函数 $y=g(x)$ 具有 $P(1)$ 性质和 $P(-1)$ 性质”.

时间: 2024-10-04 02:17:02

一道叙述有误的模拟题的相关文章

一道模拟题

问题:把英文单词表示的数字转换为阿拉伯数字,要求数字不超过整形范围,数字形如abc,def,hrg. 第一行表示有几组数据,第二行输入英文. 输出:相应的阿拉伯数字. 例如:input: 3 eleven one hundred and two output: 11 102 分析:要注意百万和千要断位,还有要从高位往低位查找,注意分情况讨论. 1 #include <iostream> 2 #include <cstring> 3 using namespace std; 4 st

又是一道模拟题吧!

题目如下:This cheeseburger you don't need Description Yoda: May the Force be with you. Master Yoda is the oldest member of the Jedi Council. He conducts preparatory classes of little Younglings up to the moment they get a mentor. All Younglings adore mas

TOJ1290 Poker Hands 模拟题

寒假期间抽空做的一道模拟题 难度不算大,把每种牌型分开处理,可以合并的步骤考虑合并. 代码比较丑陋,首次尝试Sport Programming的风格,结果搞了个不伦不类(手动笑哭) 1 #include <algorithm> 2 #include <bitset> 3 #include <cctype> 4 #include <complex> 5 #include <cstdio> 6 #include <cstring> 7 #

FZU Problem 2034 Password table (简单模拟题)

这种简单题做了好长时间,我是不是有点逗? 地址:http://acm.fzu.edu.cn/problem.php?pid=2034 不解释了,自己看吧,练手的好题 上个代码吧 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 #include <stdio.h> #include <string.h> #include <stdlib.h>

POJ 1008 简单模拟题

e.... 虽然这是一道灰常简单的模拟题.但是米做的时候没有读懂第二个日历的计时方法.然后捏.敲完之后华丽的WA了进一个点.坑点就在一年的最后一天你是该输出本年的.e ...但是我好想并没有..看discuss里好想被坑的人还不少.总天数能直接整除260的时候.年数要减1. 不喜欢做模拟.....5555.... 附代码: #include<stdio.h>#include<string.h>#include<iostream>#include<string>

8.22 NOIP 模拟题

  8.22 NOIP 模拟题 编译命令 g++ -o * *.cpp gcc -o * *.c fpc *.pas 编译器版本 g++/gcc 4.9.2 fpc 2.6.2 评测环境 64 位 Linux, 3.3GHZ CPU 评测软件 Lemon 评测方式 忽略行末空格和回车 特别注意:c/c++ 选手使用 printf 输出 64 位整数请使用%lld 1 注意事项 A 债务 文件名                            输入文件             输出文件  

HDU 4028 The time of a day STL 模拟题

暴力出奇迹.. #include<stdio.h> #include<iostream> #include<algorithm> #include<vector> #include<cmath> #include<queue> #include<set> #include<map> using namespace std; #define ll __int64 #define N 42 ll n,m,ans;

cf428c 模拟题

这题说的是给了 n个数然后又 k次 的交换任意位置的 数字的机会  计算最长的连续子序列的和 这要撸  模拟整个 过程 并不能就是算最长的递增序列 如果只是 找最长的 和序列的 话 会存在 很多问题 在替换的时候 每一个决策 都影响着 下一个决策  这样 存在谁与谁替换 这样的状态有 200!种    那就枚举每个区间这样就可以使得 我们所用替换方法得当  因为在替换中我们进行替换是对不同区间的 操作 比如 在替换序列之内的 数字的时候 其实操作的就是不同的区间 与外面的序列进行替换的时候 操作

hdu 5641 King&#39;s Phone(暴力模拟题)

Problem Description In a military parade, the King sees lots of new things, including an Andriod Phone. He becomes interested in the pattern lock screen. The pattern interface is a 3×3 square lattice, the three points in the first line are labeled as