Unknown value in the modular numerator The Next CEO of Stack OverflowModular simple equationWhat value minimizes the error from a set of values under modular arithmetic?modular arithmetic with exponentsFind the least positive integer with remainders 1,2, and 3 when divided by 7,8, and 9 respectively.Modular Arithmetic - Finding the smallest possible length of the room in inchesModular arithmetic : Subtraction and SimplificationDetermining an unknown parameter in an equation with modular arithmeticsSystem of modular equations with unknown modulusHow to find the least integer in modular arithmetic?How to get a perfect square with this condition?

What flight has the highest ratio of time difference to flight time?

Is there a way to save my career from absolute disaster?

Why do remote companies require working in the US?

"and that skill is always a class skill for you" - does "always" have any meaning in Pathfinder?

Can you replace a racial trait cantrip when leveling up?

How fast would a person need to move to trick the eye?

Why does the UK parliament need a vote on the political declaration?

Is there a difference between "Fahrstuhl" and "Aufzug"

Is it ever safe to open a suspicious html file (e.g. email attachment)?

If a black hole is created from light, can this black hole then move at speed of light?

What is ( CFMCC ) on ILS approach chart?

What does "Its cash flow is deeply negative" mean?

If/When UK leaves the EU, can a future goverment conduct a referendum to join the EU?

How to avoid supervisors with prejudiced views?

What can we do to stop prior company from asking us questions?

Skipping indices in a product

Is it possible to search for a directory/file combination?

Workaholic Formal/Informal

Limits on contract work without pre-agreed price/contract (UK)

Written every which way

Should I tutor a student who I know has cheated on their homework?

Anatomically Correct Strange Women In Ponds Distributing Swords

If the heap is initialized for security, then why is the stack uninitialized?

Elegant way to replace substring in a regex with optional groups in Python?



Unknown value in the modular numerator



The Next CEO of Stack OverflowModular simple equationWhat value minimizes the error from a set of values under modular arithmetic?modular arithmetic with exponentsFind the least positive integer with remainders 1,2, and 3 when divided by 7,8, and 9 respectively.Modular Arithmetic - Finding the smallest possible length of the room in inchesModular arithmetic : Subtraction and SimplificationDetermining an unknown parameter in an equation with modular arithmeticsSystem of modular equations with unknown modulusHow to find the least integer in modular arithmetic?How to get a perfect square with this condition?










0












$begingroup$


I'm looking for a mathematical solution to find unknown value in the numerator as follows:



IF: $$b_1 + b_2 = 151$$
$$n = 86167$$



$$ (231 * 336 + b_1)^2 mod 86167 = 151^2 $$
$$ (25 * 336 + b_2)^2 mod 86167 = 151^2 $$



So, How can I find $b_1$ and $b_2$ mathematically ??










share|cite|improve this question











$endgroup$











  • $begingroup$
    What part of this is given, and what part represents your attempt at solving the problem? I also don't know what the term "modular numerator" is supposed to mean.
    $endgroup$
    – saulspatz
    2 days ago










  • $begingroup$
    @EricLee $22801>86167?$
    $endgroup$
    – saulspatz
    2 days ago






  • 1




    $begingroup$
    Are you allowed to use that $86167=199cdot 433?$ That lets you solve $231cdot 336 b_1equiv pm 151 pmod199$ and $231cdot 336 b_1equivpm 151pmod433$ then solve for four values $b_1$ modulo $86167$ by Chinese remainder theorem. Then similar for $25cdot 336 b_2equiv pm 151pmod199,433$
    $endgroup$
    – Thomas Andrews
    2 days ago











  • $begingroup$
    Is the goal to factor the modulus, or are you know and can use its factorization?
    $endgroup$
    – Bill Dubuque
    2 days ago











  • $begingroup$
    @ThomasAndrews : Thanks alot for your answer, I was trying to study if this equation will guide me for fast factorization method.
    $endgroup$
    – al3ndaleeb
    2 days ago
















0












$begingroup$


I'm looking for a mathematical solution to find unknown value in the numerator as follows:



IF: $$b_1 + b_2 = 151$$
$$n = 86167$$



$$ (231 * 336 + b_1)^2 mod 86167 = 151^2 $$
$$ (25 * 336 + b_2)^2 mod 86167 = 151^2 $$



So, How can I find $b_1$ and $b_2$ mathematically ??










share|cite|improve this question











$endgroup$











  • $begingroup$
    What part of this is given, and what part represents your attempt at solving the problem? I also don't know what the term "modular numerator" is supposed to mean.
    $endgroup$
    – saulspatz
    2 days ago










  • $begingroup$
    @EricLee $22801>86167?$
    $endgroup$
    – saulspatz
    2 days ago






  • 1




    $begingroup$
    Are you allowed to use that $86167=199cdot 433?$ That lets you solve $231cdot 336 b_1equiv pm 151 pmod199$ and $231cdot 336 b_1equivpm 151pmod433$ then solve for four values $b_1$ modulo $86167$ by Chinese remainder theorem. Then similar for $25cdot 336 b_2equiv pm 151pmod199,433$
    $endgroup$
    – Thomas Andrews
    2 days ago











  • $begingroup$
    Is the goal to factor the modulus, or are you know and can use its factorization?
    $endgroup$
    – Bill Dubuque
    2 days ago











  • $begingroup$
    @ThomasAndrews : Thanks alot for your answer, I was trying to study if this equation will guide me for fast factorization method.
    $endgroup$
    – al3ndaleeb
    2 days ago














0












0








0





$begingroup$


I'm looking for a mathematical solution to find unknown value in the numerator as follows:



IF: $$b_1 + b_2 = 151$$
$$n = 86167$$



$$ (231 * 336 + b_1)^2 mod 86167 = 151^2 $$
$$ (25 * 336 + b_2)^2 mod 86167 = 151^2 $$



So, How can I find $b_1$ and $b_2$ mathematically ??










share|cite|improve this question











$endgroup$




I'm looking for a mathematical solution to find unknown value in the numerator as follows:



IF: $$b_1 + b_2 = 151$$
$$n = 86167$$



$$ (231 * 336 + b_1)^2 mod 86167 = 151^2 $$
$$ (25 * 336 + b_2)^2 mod 86167 = 151^2 $$



So, How can I find $b_1$ and $b_2$ mathematically ??







modular-arithmetic square-numbers






share|cite|improve this question















share|cite|improve this question













share|cite|improve this question




share|cite|improve this question








edited 2 days ago







al3ndaleeb

















asked 2 days ago









al3ndaleebal3ndaleeb

36




36











  • $begingroup$
    What part of this is given, and what part represents your attempt at solving the problem? I also don't know what the term "modular numerator" is supposed to mean.
    $endgroup$
    – saulspatz
    2 days ago










  • $begingroup$
    @EricLee $22801>86167?$
    $endgroup$
    – saulspatz
    2 days ago






  • 1




    $begingroup$
    Are you allowed to use that $86167=199cdot 433?$ That lets you solve $231cdot 336 b_1equiv pm 151 pmod199$ and $231cdot 336 b_1equivpm 151pmod433$ then solve for four values $b_1$ modulo $86167$ by Chinese remainder theorem. Then similar for $25cdot 336 b_2equiv pm 151pmod199,433$
    $endgroup$
    – Thomas Andrews
    2 days ago











  • $begingroup$
    Is the goal to factor the modulus, or are you know and can use its factorization?
    $endgroup$
    – Bill Dubuque
    2 days ago











  • $begingroup$
    @ThomasAndrews : Thanks alot for your answer, I was trying to study if this equation will guide me for fast factorization method.
    $endgroup$
    – al3ndaleeb
    2 days ago

















  • $begingroup$
    What part of this is given, and what part represents your attempt at solving the problem? I also don't know what the term "modular numerator" is supposed to mean.
    $endgroup$
    – saulspatz
    2 days ago










  • $begingroup$
    @EricLee $22801>86167?$
    $endgroup$
    – saulspatz
    2 days ago






  • 1




    $begingroup$
    Are you allowed to use that $86167=199cdot 433?$ That lets you solve $231cdot 336 b_1equiv pm 151 pmod199$ and $231cdot 336 b_1equivpm 151pmod433$ then solve for four values $b_1$ modulo $86167$ by Chinese remainder theorem. Then similar for $25cdot 336 b_2equiv pm 151pmod199,433$
    $endgroup$
    – Thomas Andrews
    2 days ago











  • $begingroup$
    Is the goal to factor the modulus, or are you know and can use its factorization?
    $endgroup$
    – Bill Dubuque
    2 days ago











  • $begingroup$
    @ThomasAndrews : Thanks alot for your answer, I was trying to study if this equation will guide me for fast factorization method.
    $endgroup$
    – al3ndaleeb
    2 days ago
















$begingroup$
What part of this is given, and what part represents your attempt at solving the problem? I also don't know what the term "modular numerator" is supposed to mean.
$endgroup$
– saulspatz
2 days ago




$begingroup$
What part of this is given, and what part represents your attempt at solving the problem? I also don't know what the term "modular numerator" is supposed to mean.
$endgroup$
– saulspatz
2 days ago












$begingroup$
@EricLee $22801>86167?$
$endgroup$
– saulspatz
2 days ago




$begingroup$
@EricLee $22801>86167?$
$endgroup$
– saulspatz
2 days ago




1




1




$begingroup$
Are you allowed to use that $86167=199cdot 433?$ That lets you solve $231cdot 336 b_1equiv pm 151 pmod199$ and $231cdot 336 b_1equivpm 151pmod433$ then solve for four values $b_1$ modulo $86167$ by Chinese remainder theorem. Then similar for $25cdot 336 b_2equiv pm 151pmod199,433$
$endgroup$
– Thomas Andrews
2 days ago





$begingroup$
Are you allowed to use that $86167=199cdot 433?$ That lets you solve $231cdot 336 b_1equiv pm 151 pmod199$ and $231cdot 336 b_1equivpm 151pmod433$ then solve for four values $b_1$ modulo $86167$ by Chinese remainder theorem. Then similar for $25cdot 336 b_2equiv pm 151pmod199,433$
$endgroup$
– Thomas Andrews
2 days ago













$begingroup$
Is the goal to factor the modulus, or are you know and can use its factorization?
$endgroup$
– Bill Dubuque
2 days ago





$begingroup$
Is the goal to factor the modulus, or are you know and can use its factorization?
$endgroup$
– Bill Dubuque
2 days ago













$begingroup$
@ThomasAndrews : Thanks alot for your answer, I was trying to study if this equation will guide me for fast factorization method.
$endgroup$
– al3ndaleeb
2 days ago





$begingroup$
@ThomasAndrews : Thanks alot for your answer, I was trying to study if this equation will guide me for fast factorization method.
$endgroup$
– al3ndaleeb
2 days ago











0






active

oldest

votes












Your Answer





StackExchange.ifUsing("editor", function ()
return StackExchange.using("mathjaxEditing", function ()
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
);
);
, "mathjax-editing");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "69"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3164651%2funknown-value-in-the-modular-numerator%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Mathematics Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

Use MathJax to format equations. MathJax reference.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3164651%2funknown-value-in-the-modular-numerator%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Boston (Lincolnshire) Stedsbyld | Berne yn Boston | NavigaasjemenuBoston Borough CouncilBoston, Lincolnshire

Trouble understanding the speech of overseas colleaguesHow can I better understand manager or clients with strong accents?Adding more movement and speech at the fundamental level to a highly-sedentary job?Difficulty in understanding Manager's accent(language and communication)How to adjust yourself where your colleagues are not understanding to you?Understanding manager's expectationsForeigner and colleagues using slangHaving difficulty understanding meetingsHow do you breathe when giving a speech?Trouble Waking Up for Emergencies (On-Call)Problems with colleaguesColleagues feeling insecure when I do my work

Ballerup Komuun Stääden an saarpen | Futnuuten | Luke uk diar | Nawigatsjuunwww.ballerup.dkwww.statistikbanken.dk: Tabelle BEF44 (Folketal pr. 1. januar fordelt på byer)Commonskategorii: Ballerup Komuun55° 44′ N, 12° 22′ O