Mọi người giải giúp e hai bài này vs em đang cần gấp
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.
a) \(\Rightarrow\left(x-3\right)\left(x+4\right)=5.12\)
\(\Rightarrow x^2+x-72=0\)
\(\Rightarrow\left(x-8\right)\left(x+9\right)=0\)
\(\Rightarrow\left[{}\begin{matrix}x=8\\x=-9\end{matrix}\right.\)
b) \(\Rightarrow\left(x+3\right)^2=36\)
\(\Rightarrow\left[{}\begin{matrix}x+3=6\\x+3=-6\end{matrix}\right.\)\(\Rightarrow\left[{}\begin{matrix}x=3\\x=-9\end{matrix}\right.\)
c) \(\Rightarrow2x^2=8\Rightarrow x^2=4\)
\(\Rightarrow\left[{}\begin{matrix}x=2\\x=-2\end{matrix}\right.\)
a) \(\dfrac{A}{x-2}=\dfrac{x^2+3x+2}{x^2-4}\)
\(\Leftrightarrow\dfrac{A}{x-2}=\dfrac{\left(x+2\right)\left(x+1\right)}{\left(x-2\right)\left(x+2\right)}\)
\(\Leftrightarrow\dfrac{A}{x-2}=\dfrac{x+1}{x-2}\Leftrightarrow A=x+1\)
b) \(\dfrac{M}{x-1}=\dfrac{x^2+3x+2}{x+1}\)
\(\Leftrightarrow\dfrac{M}{x-1}=\dfrac{\left(x+1\right)\left(x+2\right)}{x+1}\)
\(\Leftrightarrow\dfrac{M}{x-1}=x+2\Leftrightarrow M=\left(x-1\right)\left(x+2\right)=x^2+x-2\)
uses crt;
var a,b,c:integer;
begin
clrscr;
repeat
write('Nhap a='); readln(a);
write('Nhap b='); readln(b);
write('Nhap c='); readln(c);
until (a>0) and (b>0) and (c>0);
if (a+b>c) and (a+c>b) and (b+c>a) then writeln('Day la ba canh trong mot tam giac')
else writeln('Day khong la ba canh trong mot tam giac');
readln;
end.
\(R_{tđ}=\dfrac{R_1\cdot R_2}{R_1+R_2}=\dfrac{24\cdot12}{24+12}=8\Omega\)
\(I=\dfrac{U}{R}=\dfrac{12}{8}=1,5A\)
\(P=\dfrac{U^2}{R}=\dfrac{12^2}{8}=18W\)
\(Q_{tỏa1}=A_1=U_1\cdot I_1\cdot t=12\cdot\dfrac{12}{24}\cdot1\cdot3600=21600J\)
\(Q_{tỏa2}=A_2=U_2\cdot I_2\cdot t=12\cdot\dfrac{12}{12}\cdot1\cdot3600=43200J\)
Câu 1:
uses crt;
var a:array[1..100]of integer;
i,n,min:integer;
begin
clrscr;
write('Nhap n='); readln(n);
for i:=1 to n do
begin
write('A[',i,']='); readln(a[i]);
end;
min:=a[1];
for i:=1 to n do
if min>a[i] then min:=a[i];
writeln(min);
readln;
end.
Câu 2:
uses crt;
var st:string;
begin
clrscr;
write('Nhap xau:'); readln(st);
writeln('Xau ',st,' co ',length(st),' phan tu');
readln;
end.