举一反三
- 设随机变量X的分布律为P{X=-1}=1/6, P{X=0}=1/3, P{X=1/2}=1/6, P{X=1}=1/12, P{X=2}=1/4, 则E(X²)= ( ). A: 1/3 B: 2/3 C: 31/24 D: 4/3
- 以4,9,1为为插值节点,求\(\sqrt x \)的lagrange的插值多项式 A: \( {2 \over {15}}(x - 9)(x - 1) + {3 \over {40}}(x - 4)(x - 1) + {1 \over {24}}(x - 4)(x - 9)\) B: \( - {2 \over {15}}(x - 9)(x - 1) + {3 \over {40}}(x - 4)(x - 1) + {1 \over {24}}(x - 4)(x - 9)\) C: \( - {2 \over {15}}(x - 9)(x - 1) + {3 \over {40}}(x - 4)(x +1) + {1 \over {24}}(x - 4)(x - 9)\) D: \( - {2 \over {15}}(x - 9)(x - 1) + {3 \over {40}}(x - 4)(x - 1) - {1 \over {24}}(x - 4)(x - 9)\)
- 采用基2时间抽取FFT算法流图计算8点序列的DFT,第一级的数据顺序为 A: x[0],x[2],x[4],x[6],x[1],x[3],x[5],x[7] B: x[0],x[1],x[2],x[3],x[4],x[5],x[6],x[7] C: x[0],x[4],x[2],x[6],x[1],x[5],x[3],x[7] D: x[0],x[2],x[1],x[3],x[4],x[6],x[5],x[7]
- 采用基2频率抽取FFT算法计算点序列的DFT,以下()流图是对的。 A: x[0],x[1],x[2],x[3],x[4],x[5],x[6],x[7] B: x[0],x[2],x[4],x[6],x[1],x[3],x[5],x[7] C: x[0],x[2],x[1],x[3],x[4],x[6],x[5],x[7] D: x[0],x[4],x[2],x[6],x[1],x[5],x[3],x[7]
- 已知x=1,y=2,z=3,执行下列语句if(x>y) z=x;x=y;y=z;则x,y,z的值分别是 A: x=1,y=2,z=3 B: x=2,y=3,z=1 C: x=2,y=2,z=1 D: x=2,y=3,z=3
内容
- 0
求函数$y = {{1 + \root 3 \of {{x^2}} - \sqrt {2x} } \over {\sqrt x }}$的导数$y' = $( ) A: $ {1 \over 2}{x^{ - {3 \over 2}}} + {1 \over 6}{x^{ - {5 \over 6}}}$ B: $ - {1 \over 2}{x^{ - {3 \over 2}}} + {1 \over 6}{x^{ - {5 \over 6}}}$ C: ${1 \over 2}{x^{ - {3 \over 2}}} - {1 \over 6}{x^{ - {5 \over 6}}}$ D: ${1 \over 3}{x^{ - {3 \over 2}}} - {1 \over 6}{x^{ - {5 \over 6}}}$
- 1
积分[img=136x52]1803d6afd4e6f95.png[/img]的计算程序和结果是 A: clearsyms xy=1/x^2/sqrt(x^2-1)int(y,x,-2,-1)3^(1/2)/2 B: clearsyms xint(1/x^2/sqrt(x^2-1),x,-2,-1)3^(1/2)/2 C: clearsyms xint(1/x/sqrt(x^2-1),x,-2,-1)-pi/3 D: clearsyms xint(1/x/sqrt(x^2-1),x,-2,-1)3^(1/2)/2 E: clearsyms xint(1/x^2*sqrt(x^2-1),x,-2,-1)log(3^(1/2) + 2) - 3^(1/2)/2
- 2
执行以下语句的结果:dict1={"x":1,"y":2,"z":3}dict2={"x":4,"a":5}dict1.update(dict2) A: {"x":1,"y":2,"z":3,"x":4,"a":5} B: {"x":4,"a":5,"x":1,"y":2,"z":3} C: 有重复项,结果有误! D: {"x":4,"y":2,"z":3,"a":5}
- 3
集合A={x,y,z},B={1,2,3},试说明下列A到B的二元关系中,哪些能构成函数 A: {(x,1),(x,2),(y,1),(z,3)} B: {(x,1),(y,1),(z,1)} C: {(x,2),(y,3)} D: {(x,3),(y,2),(z,3),(y,3)} E: {(x,2),(y,1),(z,2)}
- 4
【单选题】Python中执行赋值语句x, y, z = 1, 2, 3后,再执行z, x, y = y, z, x,变量x、y、z中分别赋值为____。 A. x=1, y=2, z=3 B. x=3, y=1, z=2 C. x=2, y=1, z=3 D. x=3, y=2, z=1