tính p/số này giúp mik vs
1/3x + 2/5(x+1) =0
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,x\left(-3x+5\right)+3x\left(x+1\right)-40=0\)
\(\left(x.-3x\right)+\left(5x\right)+3x\left(x+1\right)-40=0\)
\(-3x^2+5x+\left(3x.x\right)+\left(3x.1\right)-40=0\)
\(-3x^2+5x+3x^2+3x-40=0\)
\(\left(-3x^2+3x^2\right)+5x+3x-40=0\)
\(8x-40=0\)
\(8x=0+40=40\)
\(x=40:8=5\)
a) \(x\left(5-3x\right)+3x\left(x+1\right)-40=0\)
\(\Rightarrow5x-3x^2+3x^2+3x-40=0\)
\(\Rightarrow8x-40=0\)
\(\Rightarrow8x=40\)
\(\Rightarrow x=5\)
b) \(\left(12x-5\right)\left(4x-1\right)+\left(3x-7\right)\left(1-16x\right)=81\)
\(\Rightarrow48x^2-12x-20x+5+3x-48x^2-7+112x=81\)
\(\Rightarrow83x=83\)
\(\Rightarrow x=1\)
a) 1/2.x+3/5.(x-2)=3
<=>1/2.x+3/5.x-6/5=3
<=>11/10.x-6/5=3
<=>11/10x=41/10
<=>x=41/11
b) (3x-4).(5x+15)=0
<=>3x-4=0 hoặc 5x+15=0
<=>x=4/3 hoặc x=-3
\(\left(-3x+2\right)-\left(5-3x\right)=-3\)
\(\Rightarrow-3x+2-5+3x=-3\)
\(\Rightarrow-3x+3x=-3+5-2\)
\(\Rightarrow0x=0\Rightarrow x\in Z\)
\(3+x-\left(3x-1\right)=6-2x\)
\(\Rightarrow3+x-3x+1=6-2x\)
\(\Rightarrow x-3x+2x=6-1-3\)
\(\Rightarrow0x=2\left(loại\right)\)
\(\left(x-5\right)\left(3x+4\right)=0\)
\(\Leftrightarrow\orbr{\begin{cases}x-5=0\\3x+4=0\end{cases}\Leftrightarrow\orbr{\begin{cases}x=5\\x=-\frac{4}{3}\end{cases}}}\)
\(7x\left(2x-1\right)=0\)
\(\Leftrightarrow\orbr{\begin{cases}7x=0\\2x-1=0\end{cases}\Leftrightarrow\orbr{\begin{cases}x=0\\x=\frac{1}{2}\end{cases}}}\)
\(\left(3x-1\right)2x=0\)
\(\Leftrightarrow\orbr{\begin{cases}3x-1=0\\2x=0\end{cases}\Leftrightarrow\orbr{\begin{cases}x=\frac{1}{3}\\x=0\end{cases}}}\)
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main()
{
ll n; cin >> n; //Nhập n;
ll a[n+5]; //Tạo mảng
vector<ll> v; //Tạo vector lưu vị trí của x (Có thể dùng mảng để lưu nhưng phải tạo thêm biến j để tăng chỉ số mỗi lần tìm được)
for(ll i=1;i<=n;i++) cin >> a[i]; //Nhập phần tử mảng
ll x, dem=0; //tạo x và biến đếm phần tử = x
cin >> x; //Nhập phần tử x;
for(ll i=1;i<=n;i++) {
if(a[i]==x) dem++, v.push_back(i); //lưu vị trí i vào vector
}
if(dem==0) cout << "0"; //nếu đếm bằng 0 thì k cần in ra chỉ số
else {
cout << dem << "\n"; //in ra đếm
for(auto it:v) cout << it << " "; //in ra chỉ số của phần tử bằng x
}
}
(Bạn có thể dùng thư viện iostream thay cho bits/stdc++.h và thay ll thành int cũng được nhé)
Chúc bạn học tốt!
a) \(PT\Leftrightarrow x^2-4x+1=3x-5\)
\(\Leftrightarrow x^2-7x+6=0\Leftrightarrow\left(x-1\right)\left(x-6\right)=0\Leftrightarrow\orbr{\begin{cases}x=1\\x=6\end{cases}}\)
b) \(PT\Leftrightarrow x^2\left(2x-3\right)-\left(2x-3\right)=0\Leftrightarrow\left(x^2-1\right)\left(2x-3\right)=0\Leftrightarrow x\in\left\{\pm1;\frac{3}{2}\right\}\)
( 3x - 1/2 ) + ( 1/2y + 3/5 ) = 0
=> ( 3 x - 1/2 ) = 0
3x = 0+1/2
3x = 1/2
x = 1/2 : 3
x = 1/6
=> ( 1/2 y + 3/5 ) = 0
1/2y = 0 - 3/5
1/2 y = -3/5
y = -3/5 : 1/2
y = -6/5