K
Khách

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.

NV
1 tháng 11 2021

\(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

NV
14 tháng 7 2021

2.

\(\Leftrightarrow cos2x-cos8x-sin3x+cos5x-2sin5x.cos5x=0\)

\(\Leftrightarrow2sin5x.sin3x-sin3x+cos5x-2sin5x.cos5x=0\)

\(\Leftrightarrow sin3x\left(2sin5x-1\right)-cos5x\left(2sin5x-1\right)=0\)

\(\Leftrightarrow\left(sin3x-cos5x\right)\left(2sin5x-1\right)=0\)

\(\Leftrightarrow\left[{}\begin{matrix}cos5x=sin3x=cos\left(\dfrac{\pi}{2}-3x\right)\\sin5x=\dfrac{1}{2}\end{matrix}\right.\)

\(\Leftrightarrow\left[{}\begin{matrix}5x=\dfrac{\pi}{2}-3x+k2\pi\\5x=3x-\dfrac{\pi}{2}+k2\pi\\5x=\dfrac{\pi}{6}+k2\pi\\5x=\dfrac{5\pi}{6}+k2\pi\end{matrix}\right.\)

\(\Leftrightarrow\left[{}\begin{matrix}x=\dfrac{\pi}{16}+\dfrac{k\pi}{4}\\x=-\dfrac{\pi}{4}+k\pi\\x=\dfrac{\pi}{30}+\dfrac{k2\pi}{5}\\x=\dfrac{\pi}{6}+\dfrac{k2\pi}{5}\end{matrix}\right.\)

NV
14 tháng 7 2021

3.

\(\Leftrightarrow1+sinx=cosx-cos3x+2sinx.cosx+1-2sin^2x\)

\(\Leftrightarrow sinx=2sin2x.sinx+2sinx.cosx-2sin^2x\)

\(\Leftrightarrow\left[{}\begin{matrix}sinx=0\Rightarrow x=k\pi\\1=2sin2x+2cosx-2sinx\left(1\right)\end{matrix}\right.\)

\(\left(1\right)\Leftrightarrow4sinx.cosx+2cosx-2sinx-1=0\)

\(\Leftrightarrow2cosx\left(2sinx+1\right)-\left(2sinx+1\right)=0\)

\(\Leftrightarrow\left(2cosx+1\right)\left(2sinx-1\right)=0\)

\(\Leftrightarrow\left[{}\begin{matrix}sinx=\dfrac{1}{2}\\cosx=-\dfrac{1}{2}\end{matrix}\right.\)

\(\Leftrightarrow...\)

5 tháng 1 2022

Bạn có thể hướng dẫn giúp mình ko? Mình cảm ơn nhiều

NV
9 tháng 1 2022

\(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\)

NV
10 tháng 1 2022

Hàm bậc 2 có \(\left\{{}\begin{matrix}a=1>0\\-\dfrac{b}{2a}=6-m\end{matrix}\right.\) nên nghịch biến trên khoảng \(\left(-\infty;6-m\right)\)

Hàm nghịch biến trên khoảng đã cho khi:

\(6-m\ge2\Rightarrow m\le4\)

\(\Rightarrow\) Có 4 giá trị nguyên dương của m

12 tháng 3 2023

loading...

loading...

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.

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.

28 tháng 1

is not different

6 tháng 2

is not different