• 2021-04-14
    x=t,y=t 2 ,z=t 3 上求一点(),使得曲线在此点上的切线平行于平面x+2y+z=4。
  • (-1,1,-1)

    内容

    • 0

      一空间曲线由参数方程x=ty=sin(2t) , -3<t<3z=cos(3t*t)表示,绘制这段曲线可以由下列哪组语句完成。? t=-3:0.1:3;x=t;y=sin (2*t);z=cos (3*t.*t);plot3(x, y, z)|t=-3:0.1:3;x=t;y=sin (2*t);z=cos (3*t*t);plot3(x, y, z)|t=-3:0.1:3;y=sin (2*t);z=cos (3*t.*t);plot3 (x, y, z)|t=-3:0.1:3;x=t;y=sin (2*t);z=cos (3*t.*t);plot3(x, y, z, t)

    • 1

      【判断题】螺旋线 x=cost, y=sint,z=t 在点(1,0,0)的切线为X=Y=Z

    • 2

      请将用户输入的x,y,z三个整数按照从小到大的顺序排列 main() { int x,y,z,t; scanf("%d,%d,%d",&x,&y,&z); if(x>y) { t=y;y=x;x=t;} if(____>z) {t=z;z=x;x=t;} if(____>z) {t=y;y=z;z=t;} printf("small to big: %d,%d,%d\n",x,y,z); }

    • 3

      下列程序执行后,分别输入 54 , 21 , 38 ,打印结果是_______ Private Sub Command1_Click() X=InputBox("X") Y=InputBox("Y") Z=InputBox("Z") If X>y Then t=x : x=Y : Y=t If X>z Then t=x : x=z : z=t If y>z Then t=Y : Y=z : z=t Print x,Y,Z End Sub

    • 4

      曲线$\left\{ \matrix{ {x^2} + {y^2} + {z^2} = 9 \cr y = x \cr} \right.$的参数方程为( ). A: $$\left\{ \matrix{ x = \sqrt 3 \cos t \cr y = \sqrt 3 \cos t \cr z = \sqrt 3 \sin t \cr} \right.(0 \le t \le 2\pi )$$ B: $$\left\{ \matrix{ x = {3 \over {\sqrt 2 }}\cos t\cr y = {3 \over {\sqrt 2 }}\cos t \cr z = 3\sin t \cr} \right.(0 \le t \le 2\pi )$$ C: $$\left\{ \matrix{ x = \cos t\cr y = \cos t\cr z = \sin t \cr} \right.(0 \le t \le 2\pi )$$ D: $$\left\{ \matrix{ x = {{\sqrt 3 } \over 3}\cos t\cr y = {{\sqrt 3 } \over 3}\cos t \cr z = {{\sqrt 3 } \over 3}\sin t\cr} \right.(0 \le t \le 2\pi )$$