Answer:
[tex]26_{16}[/tex]
Explanation:
We can obtain the hexadecimal value using an indirected way, first we will convert it to decimal:
[tex](1*5^2+2*5^1+3*5^0)=38_{10}[/tex]
having the decimal number we have to divide that number multiple times by 16 and get a record of the quotient and reminder, until the quotient is equal to zero.
[tex]38| 16[/tex]
[tex]quotient_1=2\\remainder_1=6[/tex]
[tex]2| 16[/tex]
[tex]quotient_2=0\\remainder_2=2[/tex]
Now we will take the remainders and get the hexadecimal value and put them together. (remember, the hexadecimal number are defined from 0 to F, being A=10, B=11, C=12, D=13, E=14, F=15)
[tex]remainder_1=6\\hex_1=6[/tex]
[tex]remainder_2=2\\hex_2=2[/tex]
The hexadecimal number is 26