1. a, Giải phương trình: x^{3}-3x^{2}+2x=0
b, Tìm x, y là những số nguyên thỏa mãn: x^{4}+x^{2}+1=y^{2}
2. a, CMR: x^{4}+y^{4}\geq xy(x^{2}+y^{2})
b, Cho M=\frac{x^{2}+2x+6}{x-1}(x>1). Tìm GTNN của M
3. a, Cho các số phân biệt a; b; c thõa mãn: abc\neq 0 và...
Program Gia_Tri_Lon_Nhat;
Uses crt;
Var a,b,c,d,max:real;
Begin
Clrscr;
Writeln(‘TIM SO LON NHAT TRONG BON SO A, B, C, D’);
Write(‘Nhap a=’); Readln(a);
Write(‘Nhap b=’); Readln(b); Write(‘Nhap c=’); Readln(c);
Write(‘Nhap d=’); Readln(d); max:=a;
If b>max then max:=b; If d>max then max:=d...