Những câu hỏi liên quan
Vũ Khôi Nguyên
Xem chi tiết
Mỹ Tâm
Xem chi tiết
Nguyễn Việt Lâm
1 tháng 11 2021 lúc 14:48

\(y'=\dfrac{\left(-2x+2\right)\left(x-3\right)-\left(-x^2+2x+c\right)}{\left(x-3\right)^2}=\dfrac{-x^2+6x-6-c}{\left(x-3\right)^2}\)

\(\Rightarrow\) Cực đại và cực tiểu của hàm là nghiệm của: \(-x^2+6x-6-c=0\) (1)

\(\Delta'=9-\left(6+c\right)>0\Rightarrow c< 3\)

Gọi \(x_1;x_2\) là 2 nghiệm của (1) \(\Rightarrow\left\{{}\begin{matrix}-x_1^2+6x_1-6=c\\-x_2^2+6x_2-6=c\end{matrix}\right.\)

\(\Rightarrow m-M=\dfrac{-x_1^2+2x_1+c}{x_1-3}-\dfrac{-x_2^2+2x_2+c}{x_2-3}=4\)

\(\Leftrightarrow\dfrac{-2x_1^2+8x_1-6}{x_1-3}-\dfrac{-2x_2^2+8x_2-6}{x_2-3}=4\)

\(\Leftrightarrow2\left(1-x_1\right)-2\left(1-x_2\right)=4\)

\(\Leftrightarrow x_2-x_1=2\)

Kết hợp với Viet: \(\left\{{}\begin{matrix}x_2-x_1=2\\x_1+x_2=6\end{matrix}\right.\) \(\Rightarrow\left\{{}\begin{matrix}x_1=2\\x_2=4\end{matrix}\right.\)

\(\Rightarrow c=2\)

Có 1 giá trị nguyên

Bình luận (0)
Quỳnh Thư
Xem chi tiết
Trịnh Ánh Ngọc
28 tháng 12 2020 lúc 16:26

In the age of technology, laptop is used widely. The laptop brings us a lot of benefits for our live. it is very versatile as it can do many things. firstly, it is portable. therefore, people can take it everywhere. secondly, it is economical so everyone don't have to spend too much money to buy it. besides, the laptop is a mean of entertainment. we can use it to listen to music, to chat with friends, to make video call with parents, to play games, and so on. last but not least, we can use laptop for studying. for example, the laptop can be used for researching topics on the Web or typing the assignment as well. In summary, laptop is definitely one of the greatest inventions in the world as well as the best thing in our society.

P/s: Mình nghĩ nói ngắn quá sẽ không có điểm cao lắm đâu, không cần nói quá dài hoặc quá ngắn. Chỉ cần đầy đủ ý trong bài là ok. Với lại khi nói bạn nhớ phải tự tin lên nha. FIGHTING!!!!

Bình luận (0)
Nguyễn Phúc Minh
Xem chi tiết
Nguyễn Lê Phước Thịnh
5 tháng 1 2022 lúc 21:14

Chọn B

Bình luận (1)
Nguyễn Việt Lâm
5 tháng 1 2022 lúc 21:16

\(2x+3+3\sqrt{x+1}-6=0\)

\(\Leftrightarrow2\left(x+1\right)+3\sqrt{x+1}-5=0\)

Đặt \(\sqrt{x+1}=t\)

\(\Rightarrow2t^2+3t-5=0\)

Đáp án A

Bình luận (1)
Nguyễn Phúc Minh
Xem chi tiết
Nguyễn Việt Lâm
9 tháng 1 2022 lúc 22:20

\(A\cap B=\varnothing\Leftrightarrow2m-7\le13m+1\)

\(\Leftrightarrow11m\ge-8\Rightarrow m\ge-\dfrac{8}{11}\)

\(\Rightarrow\) Số nguyên m nhỏ nhất là \(m=0\)

Bình luận (1)
Nguyễn Lê Phước Thịnh
9 tháng 1 2022 lúc 22:58

Chọn A

Bình luận (0)
proh
Xem chi tiết
Anh Thư Bùi
12 tháng 3 2023 lúc 11:13

loading...

loading...

Bình luận (0)
Hung Do Van
Xem chi tiết
Nguyễn Lê Phước Thịnh
4 tháng 5 2021 lúc 13:03

Câu 1: 

const fi='dulieu.dat'

fo='thaythe.out'

var f1,f2:text;

a:array[1..100]of string;

n,d,i,vt:integer;

begin

assign(f1,fi); reset(f1);

assign(f2,fo); rewrite(f2);

n:=0;

while not eof(f1) do 

  begin

n:=n+1;

readln(f1,a[n]);

end;

for i:=1 to n do 

  begin

d:=length(a[i]);

vt:=pos('anh',a[i]);

while vt<>0 do 

  begin

delete(a[i],vt,3);

insert('em',a[i],vt);

vt:=pos('anh',a[i]);

end;

end;

for i:=1 to n do 

  writeln(f2,a[i]);

close(f1);

close(f2);

end.

Bình luận (0)
Nguyễn Lê Phước Thịnh
4 tháng 5 2021 lúc 13:05

Câu 2: 

uses crt;

const fi='mang.inp'

fo='sapxep.out'

var f1,f2:text;

a:array[1..100]of integer;

i,n,tam,j:integer;

begin

clrscr;

assign(f1,fi); rewrite(f1);

assign(f2,fo); rewrite(f2);

write('Nhap n='); readln(n);

for i:=1 to n do 

  begin

write('A[',i,']='); readln(a[i]);

end;

for i:=1 to n do 

  write(f1,a[i]:4);

for i:=1 to n-1 do 

  for j:=i+1 to n do 

if a[i]>a[j] then

begin

tam:=a[i];

a[i]:=a[j];

a[j]:=tam;

end;

for i:=1 to n do 

  write(f2,a[i]:4);

close(f1);

close(f2);

end.

Bình luận (0)
Ngân Nguyễn
Xem chi tiết
Vuy năm bờ xuy
1 tháng 6 2021 lúc 23:33

undefined

Bình luận (0)
Đạt Trần Thọ
Xem chi tiết
Nguyễn Lê Phước Thịnh
10 tháng 12 2023 lúc 8:30

a: Xét tứ giác ABQN có

\(\widehat{BQN}=\widehat{QNA}=\widehat{NAB}=90^0\)

=>ABQN là hình chữ nhật

b: Xét ΔCAD có

DN,CH là các đường cao

DN cắt CH tại M

Do đó: M là trực tâm của ΔCAD

=>AM\(\perp\)CD

c: Xét ΔHAB vuông tại H và ΔHCA vuông tại H có

\(\widehat{HAB}=\widehat{HCA}\left(=90^0-\widehat{ABC}\right)\)

Do đó: ΔHAB đồng dạng với ΔHCA

=>\(\dfrac{HA}{HC}=\dfrac{HB}{HA}\)

=>\(HA^2=HB\cdot HC\)

=>\(HA=\sqrt{HB\cdot HC}\)

 

Bình luận (3)
Đạt Trần Thọ
10 tháng 12 2023 lúc 6:03

loading...  

Bình luận (1)
Hoàng Kiều Quỳnh Anh
Xem chi tiết
Đỗ Tuệ Lâm
12 tháng 2 2022 lúc 19:10

E tk nha:

undefined

Bình luận (0)