Xin Giải Bài Tập Này Qua Hình Ảnh Sau
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.
Bài 6:
b: \(\dfrac{1}{a-b}\cdot\sqrt{a^4\cdot\left(a-b\right)^2}\)
\(=\dfrac{1}{a-b}\cdot a^2\cdot\left(a-b\right)\)
\(=a^2\)
Bài 12:
\(a,m=1\Leftrightarrow x^2-2x-5=0\\ \Delta=4+20=24\\ \Leftrightarrow\left[{}\begin{matrix}x=\dfrac{2-2\sqrt{6}}{2}=1-\sqrt{6}\\x=\dfrac{2+2\sqrt{6}}{2}=1+\sqrt{6}\end{matrix}\right.\\ b,\Leftrightarrow\left\{{}\begin{matrix}-\dfrac{b}{a}>0\\\dfrac{c}{a}>0\end{matrix}\right.\Leftrightarrow\left\{{}\begin{matrix}m+1>0\\m-6>0\end{matrix}\right.\Leftrightarrow m>6\)
Bài 13:
\(a,m=2\Leftrightarrow x^2-4x+3=0\Leftrightarrow\left[{}\begin{matrix}x=1\\x=3\end{matrix}\right.\\ b,\text{PT có 2 nghiệm }\Leftrightarrow\Delta'=m^2-\left(m^2-m+1\right)\ge0\\ \Leftrightarrow m\ge1\\ \text{Viét: }\left\{{}\begin{matrix}x_1+x_2=2m\\x_1x_2=m^2-m+1\left(2\right)\end{matrix}\right.\\ x_1^2+2mx_2=9\\ \Leftrightarrow x_1^2+\left(x_1+x_2\right)x_2=9\\ \Leftrightarrow x_1^2+x_1x_2+x_2^2=9\\ \Leftrightarrow\left(x_1+x_2\right)^2-x_1x_2=9\\ \Leftrightarrow4m^2-m^2+m-1=9\\ \Leftrightarrow3m^2+m-10=0\\ \Leftrightarrow m=\dfrac{5}{3}\left(m\ge1\right)\)
a) \(\sqrt{169}=13\) và \(\sqrt{196}=14\)
bài 3 :
a) \(A=\frac{\sqrt{72}}{\sqrt{2}}+2\frac{\sqrt{27}}{\sqrt{3}}-3\frac{\sqrt{28}}{\sqrt{63}}=\frac{22}{3}\)tương tự
\(B=\sqrt{371^2}+2\sqrt{31^2}-\sqrt{121^2}=371+2.31-121=371+62-121=312\)
uses crt;
var s:string;
i,d,dem:integer;
begin
clrscr;
write('Nhap xau S:'); readln(s);
d:=length(s);
writeln('Cac ki tu so co trong xau S:');
dem:=0;
for i:=1 to d do
if s[i] in ['0'..'9'] then
begin
write(s[i]:4);
inc(dem);
end;
writeln;
writeln('So ki tu chu so co trong xau S: ',dem);
for i:=1 to d do
if s[i] in ['0'..'9'] then s[i]:='A';
writeln('Xau sau khi doi la: ',s);
readln;
end.