抱歉,您的浏览器无法访问本站
本页面需要浏览器支持(启用)JavaScript
了解详情 >

2012

T3

1
EquivInf(upoly("x")*Integral(Sin(Sin("x")*Sin("x"))*Deriv(Sin("x"))))

输出

1
1/3x^4

T17

1
2
3
4
5
6
7
8
9
#include "poly.h"
#define Num poly
#include "euclid.h"
using namespace std;
int main(){
Matrix P=poly("t")*Plane(1,-3,-1,-4)+Plane(2,-1,1,-1);
poly eq=dist2_dot_pl(Vector(0,0,0),P)-1;
cout<<Factorization(eq)<<endl;
}

2013

T2

1
Limit(2*Sin("x")*Ln("1+x")-2*upoly("x")*Arctan("x")+upoly("x^3"),upoly("x^4"))

T12

输入

1
2
3
4
1
2
x-1 1
x^2-2x+2 1

输出

1
2
3
4
0
1ln|x-1|
-1/2ln(x^2-2x+2)+(0)/\4arctan((2x+-2)/\4)
C

2014

T1

1
EquivInf(upoly("x")-Sin("x")+Integral(upoly("x^2")*Exp("x^2")))

输出

1
1/2x^3

T11

1
Limit(Exp("1/2x")-Pow("1-x",frac(-1,2)),upoly("x")*Tan("3x"))

输出

1
-1/12

T13

输入

1
2
3
4
2x^2
2
x-1 2
x^2+1 1

输出

1
2
3
4
5
0
1ln|x-1|
-1(x-1)^-1
-1/2ln(x^2+1)+(0)/\4arctan((2x+0)/\4)
C

2015

T1

1
EquivInf(Integral(Sin("x^2")))

输出

1
1/3x^3

2017

T8

1
2
diff ans=Deriv(Deriv(d))-2*Deriv(d)+d;
Matrix f=Matrix('C',to_v("2x"));

输出

1
(2x+4)e^0x

T11

1
2
diff ans=Deriv(d);
Matrix f=Matrix('C',to_v("x^2-1"));

输出

1
(x^2-2x+1)e^1x

2018

T12

1
EquivInf(variableLimit("3",Exp("x"),Exp("2x")));

输出 3x,还要乘2.

T16

解得:

1
2
C0 * (1)e^-1x
(-5/4x)e^-1x
1
[(1/10)cos(1x)+(-1/5)sin(1x)]e^0x

T17

1
2
3
4
5
6
7
8
9
#include "poly.h"
#define Num poly
#include "euclid.h"
using namespace std;
int main(){
Line L1=make_pair(Vector(0,0,-1),Vector(1,-1,0));
Line L2=make_pair(Vector(0,0,1),Vector(1,1,0));
output(distLine(L1,L2));
}

评论