英語中的複數怎麼用?(詳細一點.

英語中的複數怎麼用?(詳細一點.

如果是一個,就不加S如果是不止一個就要加s常見的單數名詞有,bread,bus car dog.他們是單數,如果不只一個要加s
有的名詞是不可數的,不能用複數,對應的be動詞要用is,比如有water,等等

在複數平面內,已知複數z與複數-1-i所對應的點之間的距離為1. 在複數平面內,已知複數z與複數-1-i所對應的點之間的距離為1,求z*共軛複數z+(1-i)z+(1+i)*共軛複數z 詳細過程!

可以設z=x+iy,則(x+1)^2+(y+1)^2=1,再利用後面的話列一方稱,聯立解得x,y,也就求得了z.

已知複數z滿足|z|=1,且複數2z+3-4i,則複數對應點的軌跡為?

“lixiedehao”您好,很高興為您解答!
w=2z+3-4i,
z=(w-3+4i)/2,因為|z|=1,
so:|z|=|(w-3+4i)/2|=1,
so:|w-3+4i|=2,
即w的軌跡為圓:|w-3+4i|=2.
希望我的回答對您有幫助~

求c++複數小算盘1)所設計的複數小算盘可以進行+ - * += -= *= ++ -- >= =

class Complex
{
public:
Complex(){
re=0.0f;
im=0.0f;
}
Complex(float _re,float _im)
{
re = _re;
im = _im;
}
Complex(const Complex &complex)
{
*this = complex;
}
// operators:
Complex &operator=(const Complex &c)
{
re = c.re;
im = c.im;
return *this;
}
Complex operator+(const Complex &c)
{
return Complex(re+c.re,im+c.im);
}
Complex operator-(const Complex &c)
{
return Complex(re-c.re,im-c.im);
}
Complex operator*(const Complex &c)
{
return Complex(re*c.re - im*c.im,re*c.im + im*c.re);
}
Complex operator+=(const Complex &c)
{
*this = *this+c;
return *this;
}
Complex operator-=(const Complex &c)
{
*this = *this-c;
return *this;
}
Complex operator*=(const Complex &c)
{
*this = *this*c;
return *this;
}
//++,虛實都各加1
//前置
Complex &operator++(void)
{

return *this = *this+Complex(1,1);
}
Complex &operator--(void)
{
return *this = *this-Complex(1,1);
}
//後置
Complex operator++(int t)
{
t =0;
Complex temp = *this;
++*this;
return temp;
}

Complex operator--(int t)
{
t =0;
Complex temp = *this;
--*this;
return temp;
}
bool operator==(const Complex &c)
{
return(re==c.re && im==c.im);
}
bool operator!=(const Complex &c)
{
return!(*this==c);
}
//模比較?下麵的都是
bool operator>(const Complex &c)
{
return((re*2+im*2)>(c.re*2+c.im*2));
}
bool operator=(const Complex &c)
{
return!(*thisb)
a=Complex(1,1);
if(a=b)
a=Complex(1,1);
if(a

sin30°cos60°+cos30°sin60°= 做不來.

1

Cos0.cos30.cos60.sin0.sin30.sin60.求得數

cos0°=1
cos30°=√3/2
cos60°=1/2
sin0°=0
sin30°=1/2
sin60°=√3/2

sin²60°-tan45°×cos60°-tan²60°根號(cos60°-1)²+sin60°-1的絕對值 急

=(√3/2)²-1×1/2-(√3)²
=3/4-1/2-3
=-2又3/4
根號(cos60°-1)²+sin60°-1的絕對值
=1-cos60°+1-sin60°
=1-1/2+1-√3/2
=3/2-√3/2

cos²45°-1/cos60°+1/tan45°+cos²30°+sin²45°

原式=(√2/2)^2-1/(1/2)+1/1+(√2/2)^2
=(1/2)-2+1+(1/2)
=1-2+1
=0
望採納,謝謝

sin30°+sin60°=sin90°吧?

不是
sin30°+sin60°=1/2+√3/2=(1+√3)/2
sin90°=1

sin30度加sin45度加sin90度等於多少

3+根號2分之2