bai1; phân tích đa thức thành nhân tử
a, x^4+2010x^2+2009x+2010
bai2: tìm các cặp cố nguyên (x,y) thoả mãn phương trình:
x^2-25=y(y+6)
cac ban oi lam on giup minh 2 bai nay duoc k minh dang can gap lam.
Hãy nhập câu hỏi của bạn vào đây, nếu là tài khoản VIP, bạn sẽ được ưu tiên trả lời.
const fi='bai1.inp';
fo='bai1.out';
var f1,f2:text;
a:array[1..100]of integer;
n,i,t,dem:integer;
begin
assign(f1,fi); reset(f1);
assign(f2,fo); rewrite(f2);
readln(f1,n);
for i:=1 to n do
read(f1,a[i]);
t:=0;
dem:=0;
for i:=1 to n do
begin
if a[i] mod 2<>0 then t:=t+a[i]
else inc(dem);
end;
writeln(f2,'Tong cac so le la: ',t);
writeln(f2,'So so chan la: ',dem);
close(f1);
close(f2);
end.
const fi='bai1.inp';
fo='bai1.out';
var f1,f2:text;
a,m,lt,i:integer;
begin
assign(f1,fi); reset(f1);
assign(f2,fo); rewrite(f2);
readln(f1,a,m);
lt:=1;
for i:=1 to m do
lt:=lt*a;
writeln(f2,lt);
close(f1);
close(f2);
end.
pham minh hoa Bài 1 cho đề như thế nào ? Thiếu dữ liệu đề bài rồi :vv
Nguyễn Văn Tân làm đúng nhưng cách làm như bạn thì sai ùi !
2^600 = ( 2^6 )^100 = 64^100
3^400 = ( 3^4)^100 = 81^100
Vì 64 < 81 nên 64^100 < 81^100
Nên : 2^600 < 3^400
Bài \(1.\)
\(x^4+2010x^2+2009x+2010=\left(x^4-x\right)+\left(2010x^2+2010x+2010\right)\)
\(=x\left(x^3-1\right)+2010\left(x^2+x+1\right)\)
\(=x\left(x-1\right)\left(x^2+x+1\right)+2010\left(x^2+x+1\right)\)
\(=\left(x^2+x+1\right)\left(x^2-x+2010\right)\)
Bài \(2.\)
\(x^2-25=y\left(y+6\right)\)
\(\Leftrightarrow\) \(x^2-25+9=y^2+6y+9\)
\(\Leftrightarrow\) \(x^2-16=\left(y+3\right)^2\)
\(\Leftrightarrow\) \(x^2-\left(y+3\right)^2=16\)
\(\Leftrightarrow\) \(\left(x-y-3\right)\left(x+y+3\right)=16\)
Bạn xét từng trường hợp nhóe!