GIÚP MK LÀM BÀI NÀY NHA,MK ĐANG CẦN GẤP,CẢM ƠN RẤT NHIỀU.
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.
Đặt \(\left\{{}\begin{matrix}\sqrt{x^2+2x+3}=a>0\\\sqrt{x^2+x+2}=b>0\end{matrix}\right.\) \(\Rightarrow a^2-b^2=x+1\)
Pt trở thành:
\(a+b=2\left(a^2-b^2\right)\)
\(\Leftrightarrow a+b=\left(2a-2b\right)\left(a+b\right)\)
\(\Leftrightarrow2a-2b=1\) (do \(a+b>0\))
\(\Leftrightarrow2a=2b+1\)
\(\Leftrightarrow2\sqrt{x^2+2x+3}=2\sqrt{x^2+x+2}+1\)
\(\Leftrightarrow4\left(x^2+2x+3\right)=4\left(x^2+x+2\right)+1+4\sqrt{x^2+x+2}\)
\(\Leftrightarrow4x+3=4\sqrt{x^2+x+2}\)
\(\Leftrightarrow\left\{{}\begin{matrix}x\ge-\dfrac{3}{4}\\16\left(x^2+x+2\right)=\left(4x+3\right)^2\end{matrix}\right.\)
\(\Leftrightarrow\left\{{}\begin{matrix}x\ge-\dfrac{3}{4}\\8x=23\end{matrix}\right.\) \(\Rightarrow x=\dfrac{23}{8}\)
b.
ĐKXĐ: \(x\ge3\)
Đặt \(\left\{{}\begin{matrix}\sqrt{x-3}=a\ge0\\\sqrt{x+2}=b>0\end{matrix}\right.\) \(\Rightarrow a^2-b^2=-5\)
Phương trình trở thành:
\(\left(a-b\right)\left(ab+1\right)=a^2-b^2\)
\(\Leftrightarrow\left(a-b\right)\left(ab+1\right)=\left(a-b\right)\left(a+b\right)\)
\(\Leftrightarrow\left[{}\begin{matrix}a=b\left(vô-nghiệm\right)\\ab+1=a+b\end{matrix}\right.\)
\(\Rightarrow ab-a-b+1=0\)
\(\Leftrightarrow\left(a-1\right)\left(b-1\right)=0\)
\(\Rightarrow\left[{}\begin{matrix}a=1\\b=1\end{matrix}\right.\)
\(\Rightarrow\left[{}\begin{matrix}\sqrt{x-3}=1\\\sqrt{x+2}=1\end{matrix}\right.\)
\(\Rightarrow\left[{}\begin{matrix}x=4\\x=-1\left(ktm\right)\end{matrix}\right.\)
Câu 6:
a: =12x^2+4x-3x-1-5x^2+15x-x^2+7x-12
=6x^2+23x-13
b: =5x^2+5x-2x-2-3x^3+3x^2+9x-2x(x^2-9x+20)
=-3x^3+8x^2+14x-2-2x^3+18x^2-40x
=-5x^3+26x^2-26x-2
Bài 3:
1, Áp dụng t/c dtsbn:
\(\dfrac{x}{6}=\dfrac{y}{4}=\dfrac{z}{3}=\dfrac{z-x}{3-6}=\dfrac{-21}{-3}=7\\ \Rightarrow\left\{{}\begin{matrix}x=42\\y=28\\z=21\end{matrix}\right.\)
2, Áp dụng t/c dtsbn:
\(\dfrac{x}{3}=\dfrac{y}{5}=\dfrac{z}{7}=\dfrac{2x+3y-z}{6+15-7}=\dfrac{-14}{14}=-1\\ \Rightarrow\left\{{}\begin{matrix}x=-3\\y=-5\\z=-7\end{matrix}\right.\)
Bài 4:
Áp dụng tính chất của dãy tỉ số bằng nhau, ta được:
\(\dfrac{x}{\dfrac{1}{2}}=\dfrac{y}{\dfrac{1}{3}}=\dfrac{z}{\dfrac{1}{4}}=\dfrac{x+y+z}{\dfrac{1}{2}+\dfrac{1}{3}+\dfrac{1}{4}}=\dfrac{130}{\dfrac{13}{12}}=120\)
Do đó: x=60; y=40; z=30
b: Xét tứ giác ABCD có
M là trung điểm của AC
M là trung điểm của BD
Do đó: ABCD là hình bình hành
Suy ra: AB//CD
#include <bits/stdc++.h>
using namespace std;
double a;
int main()
{
cin>>a;
if (a>=8.0) cout<<"Gioi";
else if (6.5<=a) cout<<"Kha";
else if (5.0<=a) cout<<"Trung Binh";
else if (3.5<=a) cout<<"Yeu";
else cout<<"Kem";
return 0;
}