Nth રુટ ગણકયંત્ર
ચોરસ, ઘન અથવા કોઈપણ nમ રુટ નંબર શોધો.
તમે લખતા હોવ તેમ પરિણામો સુધારો.
આ ગણકયંત્ર વિશે
the value and the degree n, and it returns the root along withacheck that raises the answer back to the nth power to confirm it lands on your original number. For example, the cube root of 27 is 27^(1/3) = 27, and the check shows 3 ^ 3 = 27. Odd roots of negative numbers are real and negative — the cube root of −8 is −2 — but even roots of negatives (likeasquare root of −4) have no real value, so the tool reports "noRootRoots appear in geometry, standard deviation, growth-rate averaging (the geometric mean) and physics.Roots are computed as value^(1/n), the inverse of raising to the power n. The square root uses n = 2and the square root n
વારંવાર પૂછાતા પ્રશ્નો
તમે સંખ્યાનો nમો રુટ કેવી રીતે શોધી શકો છો?
સંખ્યાને ૧/n નાં ક્ષેત્રમાં વધારો. ૨૭ નો ઘન મૂળ ૨૭^(૧/૩) =૩ છે, કારણકે ૩ × ૩ × ૩ = ૨૭ છે.
શું તમે નકારાત્મક સંખ્યાનો જોડાયેલ રુટ લઈ શકો છો?
વાસ્તવિક સંખ્યાઓની અંદર નથી - ત્યાં -4 નો વાસ્તવિક ચોરસ મૂળ નથી. નકારાત્મકના અયોગ્ય મૂળ સારા છે: -8 નો ઘન મૂળ -2 છે.
૨૭ નો ઘન રુટ શું છે?
તે 27^(1/3) =3છે, કારણકે3ને3ના ક્ષેત્રફળમાં વધારો કરવાથી 27 મળે છે.
"Check" લીટી કેવી રીતે કામ કરે છે?
તે ગણિતીય રુટને n નાં ક્ષેત્રમાં પાછો ઉઠાવે છે. જો તે તમારી મૂળ કિંમત પાછી આપે તો, રુટ સાચો છે - ૨૭ ના ક્યુબ રુટ માટે તે3^3= ૨૭ બતાવે છે.
હું આ સાધન સાથે વર્ગ મૂળ કેવી રીતે શોધી શકું?
ક્રમ n ને2પર સુયોજિત કરો. સરળ રૅડિકલ ફોર્મ માટે જેમ કે 6√2, તેની જગ્યાએ સમર્પિત વર્ગ રુટ ગણકયંત્ર વાપરો.
૧ નો nમો મૂળ કયો છે?
૧ નો nમો રુટ હંમેશા કોઈપણ ધોરણ માટે ૧ છે, કારણ કે ૧ કોઈપણ ક્ષેત્રમાં વધારેલ છે તે ૧ છે.
API — કોડમાંથી આ ગણકયંત્ર વાપરો
આ ગણકયંત્રને મુક્ત JSON અંતિમબિંદુ તરીકે બોલાવો - કોઈ કી જરૂરી નથી. નીચેના ક્ષેત્ર કિંમતોને પ્રશ્ન પરિમાણો અથવા JSON તરીકે મોકલો. સંપૂર્ણ API દસ્તાવેજો વાંચો →
અંતિમબિંદુ
GET https://calculator.free/api/v1/root/
curl
curl "https://calculator.free/api/v1/root/?value=27°ree=3"
JavaScript fetch()
const r = await fetch(
"https://calculator.free/api/v1/root/?" + new URLSearchParams({
"value": "27",
"degree": "3"
}));
const data = await r.json();
console.log(data.results);
પરિણામો સામાન્ય માર્ગદર્શન માટે જ અંદાજિત છે, નાણાકીય, તબીબી અથવા કરવેરા સલાહ માટે નહીં.