Giúp mìn vs ạ😭😭
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.
Đk:\(y^2-2x-5y+6\ge0\)
Pt (1)\(\Leftrightarrow\left(x^2-1\right)-\left(xy-y\right)+\left(x-1\right)=0\)
\(\Leftrightarrow\left(x-1\right)\left(x+1\right)-y\left(x-1\right)+\left(x-1\right)=0\)
\(\Leftrightarrow\left(x-1\right)\left(x+2-y\right)=0\)
\(\Leftrightarrow\left[{}\begin{matrix}x=1\\y=x+2\end{matrix}\right.\)
TH1: Thay x=1 vào pt (2) ta đc: \(3\sqrt{y^2-5y+4}=y+9\)
\(\Leftrightarrow\left\{{}\begin{matrix}y+9\ge0\\9\left(x^2-5y+4\right)=y^2+18y+81\end{matrix}\right.\)\(\Leftrightarrow\left\{{}\begin{matrix}y\ge-9\\8y^2-63y-45=0\end{matrix}\right.\)\(\Leftrightarrow\left[{}\begin{matrix}y=\dfrac{63+3\sqrt{601}}{16}\\y=\dfrac{63-3\sqrt{601}}{16}\end{matrix}\right.\) (tm)
TH2: Thay y=x+2 vào pt (2) ta đc:
\(\left(x-1\right)^2+3\sqrt{\left(x+2\right)^2-2x-5\left(x+2\right)+6}=x+2+9\)
\(\Leftrightarrow x^2-3x-10+3\sqrt{x^2-3x}=0\)
Đặt \(t=\sqrt{x^2-3x}\left(t\ge0\right)\)
Pttt: \(t^2-10+3t=0\)\(\Leftrightarrow\left[{}\begin{matrix}t=2\left(tm\right)\\t=-5\left(ktm\right)\end{matrix}\right.\)
\(\Rightarrow2=\sqrt{x^2-3x}\)\(\Leftrightarrow\left[{}\begin{matrix}x=4\\x=-1\end{matrix}\right.\)\(\Rightarrow\left[{}\begin{matrix}y=6\\y=1\end{matrix}\right.\) (tm)
Vậy \(\left(x;y\right)=\text{}\left\{\left(1;\dfrac{63+3\sqrt{601}}{16}\right);\left(1;\dfrac{63-3\sqrt{601}}{16}\right),\left(4;6\right),\left(-1;1\right)\right\}\)
Xét pt đầu:
\(\left(x^2+x-2\right)-y\left(x-1\right)=0\)
\(\Leftrightarrow\left(x-1\right)\left(x+2\right)-y\left(x-1\right)=0\)
\(\Leftrightarrow\left(x-1\right)\left(x+2-y\right)=0\)
\(\Leftrightarrow\left[{}\begin{matrix}x=1\\y=x+2\end{matrix}\right.\)
- Với \(x=1\) thay xuống pt dưới:
\(3\sqrt{y^2-5y+4}=y+9\) \(\left(y\ge-9\right)\)
\(\Leftrightarrow9\left(y^2-5y+4\right)=y^2+18y+81\)
\(\Leftrightarrow8y^2-63y-45=0\)
\(\Rightarrow y=\dfrac{63\pm3\sqrt{601}}{16}\) (thỏa mãn)
- Với \(y=x+2\) thay xuống pt dưới:
\(\left(x-1\right)^2+3\sqrt{x^2-3x}=x+11\) (ĐKXĐ: ....)
\(\Leftrightarrow x^2-3x+3\sqrt{x^2-3x}-10=0\)
Đặt \(\sqrt{x^2-3x}=t\ge0\)
\(\Rightarrow t^2+3t-10=0\Rightarrow\left[{}\begin{matrix}t=2\\t=-5\left(loại\right)\end{matrix}\right.\)
\(\Rightarrow\sqrt{x^2-3x}=2\Leftrightarrow x^2-3x-4=0\)
\(\Leftrightarrow...\)
\(\left\{{}\begin{matrix}3x+1< x-7\\1-2x>x+1\end{matrix}\right.\) \(\Leftrightarrow\left\{{}\begin{matrix}2x< -8\\3x< 0\end{matrix}\right.\)
\(\Leftrightarrow\left\{{}\begin{matrix}x< -4\\x< 0\end{matrix}\right.\) \(\Rightarrow x< -4\)
Vậy nghiệm của hệ là \(S=\left(-\infty;-4\right)\)
Áp dụng tính chất của dãy tỉ số bằng nhau, ta được:
\(\dfrac{x}{5}=\dfrac{y}{7}=\dfrac{z}{2}=\dfrac{y-x}{7-5}=\dfrac{48}{2}=24\)
Do đó: x=120; y=168; z=48
1 She said that she was coming
2 She said that she wouldn't see me the following day
3 She said that he worked in a bank
4 She said that he was living in Paris for a few months
5 Lan said that she would be very busy the next day
6 Thu said that all the students would have a meeting the following sunday
7 Tam said that she could swim acroos that river
8 His sister said that she didn't buy that book
9 The boy said that they had to try their best to win the match
10 Her father said to her that she could go to the movies with her friends
11 Her classmate said that Lan was the most intellligent girl in their class
12 The teacher said that the sun rised in the east
Câu 3:
#include <bits/stdc++.h>
using namespace std;
string a[1000];
int i,n,d,t,ln,nn,x;
int main(){
freopen("dkt.inp","r",stdin);
freopen("dkt.out","w",stdout);
cin>>n;
for (i=1; i<=n; i++)
cin>>a[i];
t=0;
for (i=1; i<=n; i++)
{
x=a[i].length();
t=t+x;
}
ln=0;
nn=255;
for (i=1; i<=n; i++)
{
x=a[i].length();
ln=max(ln,x);
nn=min(nn,x);
}
cout<<nn<<" "<<ln<<" "<<t;
return 0;
}